소스 검색

suppress error messages and don't enter for loop when no tag files exist

Alexey Shpakovsky 11 년 전
부모
커밋
a5a196773a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      bb.sh

+ 2 - 2
bb.sh

@@ -720,7 +720,7 @@ all_tags() {
 
 
     echo "<h3>$template_tags_title</h3>" >> "$contentfile"
     echo "<h3>$template_tags_title</h3>" >> "$contentfile"
     echo "<ul>" >> "$contentfile"
     echo "<ul>" >> "$contentfile"
-    for i in ./$prefix_tags*.html; do
+    for i in $(ls ./$prefix_tags*.html 2>/dev/null || echo ''); do
         echo -n "."
         echo -n "."
         nposts="$(grep -c "<\!-- text begin -->" $i)"
         nposts="$(grep -c "<\!-- text begin -->" $i)"
         tagname="$(echo $i | cut -c $((${#prefix_tags}+3))- | sed 's/\.html//g')"
         tagname="$(echo $i | cut -c $((${#prefix_tags}+3))- | sed 's/\.html//g')"
@@ -837,7 +837,7 @@ rebuild_tags() {
         rm "$tmpfile"
         rm "$tmpfile"
     done
     done
     # Now generate the tag files with headers, footers, etc
     # Now generate the tag files with headers, footers, etc
-    for i in $(ls -t ./$prefix_tags*.tmp.html); do
+    for i in $(ls -t ./$prefix_tags*.tmp.html 2>/dev/null || echo ''); do
         tagname="$(echo $i | cut -c $((${#prefix_tags}+3))- | sed 's/\.tmp\.html//g')"
         tagname="$(echo $i | cut -c $((${#prefix_tags}+3))- | sed 's/\.tmp\.html//g')"
         create_html_page "$i" "$prefix_tags$tagname.html" yes "$global_title &mdash; $template_tag_title \"$tagname\""
         create_html_page "$i" "$prefix_tags$tagname.html" yes "$global_title &mdash; $template_tag_title \"$tagname\""
         rm "$i"
         rm "$i"