No need for seperate media folder

This commit is contained in:
Arya Kiran 2022-09-09 17:47:52 +05:30
parent 414d8c07c9
commit c9284ecaab
No known key found for this signature in database
GPG Key ID: 3A6EA2D0EE314EEF
1 changed files with 1 additions and 2 deletions

View File

@ -30,10 +30,9 @@ for i in $POSTS; do pandoc --css=../style.css --ascii --metadata lang="$HTML_LAN
rsync $POSTS_DIR*.html $OUTPUT$WEB_HTML;
rm $POSTS_DIR*.html
# Copy XSLT, stylesheet, and media files
# Copy XSLT, stylesheet files
rsync rss.xsl $OUTPUT/blog;
rsync style.css $OUTPUT/blog;
rsync -r media $OUTPUT/blog;
# Remove the default blog index to avoid pulling into the XML feed
rm $OUTPUT$WEB_HTML/index.html