Fixed error where I would create a file called RSS_FEED_PATH

This commit is contained in:
2024-07-25 10:55:03 -05:00
parent dc61c92a4e
commit f1f5ab51b2

View File

@@ -236,7 +236,7 @@ gen_sorted_file_list() { # Generate a list of the HTMl files, sorted by when the
gen_rss_feed() { # Uses the sorted_file_list variable to generate an RSS feed
echo "Generating RSS Feed..."
local RSS_FEED_PATH="${BASE_PATH}/output/rss.xml"
touch "RSS_FEED_PATH" # Create the RSS file
touch "$RSS_FEED_PATH" # Create the RSS file
local RSS_CONTENT="<rss version=\"2.0\">\n"
counter=0
RSS_CONTENT+="<channel>\n"