From e1c3f9f1ccd8ceaa9bf96c063ea7f9a5b256fbe7 Mon Sep 17 00:00:00 2001 From: TheOnePath Date: Thu, 1 Jul 2021 13:56:14 +0100 Subject: [PATCH] Fixed bug Identified bug around line 400 where line started with 'r[['. Removed 'r' from the start of the line. --- updater | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updater b/updater index 544da10..449ffac 100755 --- a/updater +++ b/updater @@ -408,7 +408,7 @@ exit_code=$? log "DEBUG" "Successfully extracted files from data.tar.gz." "$log_file" [[ ! $quiet -eq 0 ]] && echo "completed." ## etc/ directory only contains a cron daily directory, remove it -r[[ ! $quiet -eq 0 ]] && m -r "$tmp_path/etc/" +[[ ! $quiet -eq 0 ]] && m -r "$tmp_path/etc/" ## add data.tar.xz to the garbage list echo "$tmp_path/data.tar.xz" >> "$garbage"