From 7454087c882203256adf459579c304f2ea4df0d2 Mon Sep 17 00:00:00 2001 From: "Celestial.y" Date: Fri, 17 Oct 2025 11:15:56 +0800 Subject: [PATCH] Fix backup function typo --- sdata/step/3.install-files.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdata/step/3.install-files.sh b/sdata/step/3.install-files.sh index f155d0b0c..7918f0ce0 100644 --- a/sdata/step/3.install-files.sh +++ b/sdata/step/3.install-files.sh @@ -41,10 +41,10 @@ function backup_clashing_targets(){ args_includes+=(--include="$current_target") fi done - args_includes+=(--exclude="*") + args_includes+=(--exclude='*') x mkdir -p $backup_dir - x rsync -av --progress "${arg_includes[@]}" "$target_dir/" "$backup_dir/" + x rsync -av --progress "${args_includes[@]}" "$target_dir/" "$backup_dir/" } function ask_backup_configs(){