home · contact · privacy
Harden against lack of blog entries.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 2 Jan 2017 03:02:47 +0000 (04:02 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 2 Jan 2017 03:02:47 +0000 (04:02 +0100)
processor/feed.xml.do
processor/index.html.do

index 19ba026d3589d30c0fefab2c82e0562e4358c376..717fa89c9590c96afdb645f4860288649e2e4067 100644 (file)
@@ -60,8 +60,10 @@ printf "<updated>%s</updated>\n\n" "$lastmod_rfc3339"
 
 # Write feed entries.
 for file in ./${tmp_snippets_dir}/*; do
-  cat "${file}"
-  printf "\n"
+  if [ -e "$file" ]; then
+    cat "${file}"
+    printf "\n"
+  fi
 done
 rm -rf "$tmp_snippets_dir"
 
index 105bc74309cc2e177fafd508fb52da4829c70e71..5149cace9c3aeb31e00388e726c001c1182d3fb8 100644 (file)
@@ -29,9 +29,11 @@ done
 
 # Write link list.
 for file in ./${tmp_snippets_dir}/*; do
-  touch ./${tmp_snippets_dir}/list
-  cat "$file" ./${tmp_snippets_dir}/list > ./${tmp_snippets_dir}/tmp
-  mv ./${tmp_snippets_dir}/tmp ./${tmp_snippets_dir}/list
+  if [ -e "$file" ]; then
+    touch ./${tmp_snippets_dir}/list
+    cat "$file" ./${tmp_snippets_dir}/list > ./${tmp_snippets_dir}/tmp
+    mv ./${tmp_snippets_dir}/tmp ./${tmp_snippets_dir}/list
+  fi
 done
 if [ -e "./${tmp_snippets_dir}/list" ]; then
   list=$(cat ./${tmp_snippets_dir}/list | prep_sed)