Fix syntax error in if statement

This commit is contained in:
TheBITLINK aka BIT
2025-10-16 00:32:57 -03:00
committed by GitHub
parent b36758a155
commit e993671d02
+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