chiark / gitweb /
changelog: Tidy up
[dgit.git] / infra / dgit-mirror-rsync
index f2796f4b7faf10fd8a99373e7fda4eb854426154..0d29ffb3e65621b3fec1f468bd0d64c5d90f3772 100755 (executable)
@@ -26,7 +26,7 @@ set -o pipefail
 shopt -s nullglob
 
 case "$DGIT_DRS_DEBUG" in
-''|0!1)                ;;
+''|0|1)                ;;
 *)             set -x  ;;
 esac
 
@@ -108,7 +108,11 @@ attempt () {
        exec 3>&2 >"$queue/$package.err" 2>&1
        if actually; then
                rm -f "$queue/$package.a"
+               exec 2>&3 2>&1
                mv -f "$queue/$package.err" "$queue/$package.log"
+               if ! [ -s "$queue/$package.log" ]; then
+                       rm "$queue/$package.log"
+               fi
                rm "$queue/$package.lock"
        else
                cat >&3 "$queue/$package.err"
@@ -146,7 +150,7 @@ reinvoke-locked)
 
 backlog)
        for f in $queue/*.[na]; do
-               (lock-and-process-baseof-f)
+               (lock-and-process-baseof-f ||:)
        done
        ;;