summaryrefslogtreecommitdiff
path: root/rs.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xrs.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/rs.sh b/rs.sh
index 19255fd..7b5f29a 100755
--- a/rs.sh
+++ b/rs.sh
@@ -37,7 +37,6 @@ rssBlogTitle="blog"
rssBlogDescription="It's a blog"
. "./rss.cfg" # Override the defaults
# Header of the RSS XML file
-echo "-> [$(date +%R)] Inserting XML header ..."
printf '%s\n' '<rss version="2.0">' > "www/rss.xml"
printf '%s\n' '<channel>' >> "www/rss.xml"
printf '%s\n' "<title>${rssBlogTitle}</title>" >> "www/rss.xml"
@@ -56,8 +55,5 @@ do
done
# Footer of the RSS XML file
-echo "-> [$(date +%R)] Inserting XML footer ..."
printf '%s\n' '</channel>' >> "www/rss.xml"
printf '%s\n' '</rss>' >> "www/rss.xml"
-
-echo "-> [$(date +%R)] RSS generation done!"