From 50b5af6095d28a127485402e9edf72086e262733 Mon Sep 17 00:00:00 2001 From: Alexis Ben Miloud--Josselin Date: Fri, 5 Jan 2024 18:03:17 +0100 Subject: [PATCH] Revert last fix It breaks the backup. Because of `set -u`, we can initialize temp_files using temp_files. --- client/zzz_evobackup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/zzz_evobackup b/client/zzz_evobackup index 67cef73..6250403 100755 --- a/client/zzz_evobackup +++ b/client/zzz_evobackup @@ -629,7 +629,7 @@ main() { # Initialize a list of files to delete at exit # Any file added to the list will also be deleted at exit - temp_files="${temp_files} ${PIDFILE}" + temp_files="${PIDFILE}" # shellcheck disable=SC2064 trap "rm -f ${temp_files}" EXIT