Fix syntax error in if statement (#2214)

This commit is contained in:
Celestial.y
2025-10-16 11:43:50 +08:00
committed by GitHub
+1 -1
View File
@@ -32,7 +32,7 @@ function backup_clashing_targets(){
for i in "${clash_list[@]}"; do
current_target=$target_dir/$i
if [[ -d $current_target ]]; do
if [[ -d $current_target ]]; then
args_includes+=(--include="$current_target/")
args_includes+=(--include="$current_target/**")
else