Browse Source

simplified a couple commands and removed debug echos

Carlos Fenollosa 9 năm trước cách đây
mục cha
commit
2b8b02ac58
1 tập tin đã thay đổi với 1 bổ sung6 xóa
  1. 1 6
      bb.sh

+ 1 - 6
bb.sh

@@ -1010,14 +1010,9 @@ rebuild_all_entries() {
 
         # Read timestamp from post, if present, and sync file timestamp
         timestamp=$(awk '/<!-- '$date_inpost': .+ -->/ { print }' "$i" | cut -d '#' -f 2)
-        if [[ -n $timestamp ]]; then 
-            echo "$i" timestamp present $timestamp
-            # Convert to timestamp for touch
-            touch -t "$timestamp" "$i"
-        fi
+        [[ -n $timestamp ]] && touch -t "$timestamp" "$i"
         # Read timestamp from file in correct format for 'create_html_page'
         timestamp=$(LC_ALL=C date -r "$i" +"$date_format_full")
-        echo "$i" now reading $timestamp
 
         create_html_page "$contentfile" "$i.rebuilt" no "$title" "$timestamp" "$(get_post_author "$i")"
         # keep the original timestamp!