From 10d40508e63a80497126f5d17c57013d8c523091 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 5 Apr 2020 16:23:07 -0700 Subject: [PATCH] Use "exit 1" in atomic-rsync for error exit. Fixes bug #15469. --- support/atomic-rsync | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/atomic-rsync b/support/atomic-rsync index 9e620cfe..79c2edfe 100755 --- a/support/atomic-rsync +++ b/support/atomic-rsync @@ -59,7 +59,7 @@ if (system($RSYNC_PROG, "--link-dest=$dest_dir", @ARGV)) { } else { printf "child exited with value %d\n", $? >> 8; } - exit $?; + exit 1; } if (!defined $old_dir) { -- 2.47.2