about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xshatom5
1 files changed, 5 insertions, 0 deletions
diff --git a/shatom b/shatom index 8e3abe5..05b6052 100755 --- a/shatom +++ b/shatom
@@ -68,6 +68,11 @@ main() {
68 FEED_UPDATED="${FEED_UPDATED:-$(date -u +'%F %TZ')}" 68 FEED_UPDATED="${FEED_UPDATED:-$(date -u +'%F %TZ')}"
69 SITE_URL="${SITE_URL:-https://example.com/}" 69 SITE_URL="${SITE_URL:-https://example.com/}"
70 70
71 # Add PWD if no directories are given.
72 if [ $# -eq 0 ]; then
73 set -- .
74 fi
75
71 # Do the damn thing already 76 # Do the damn thing already
72 feed_header 77 feed_header
73 for DIR; do 78 for DIR; do