From fcd2c457f3828978cccfc6093863e83ff2fbe515 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 15 Feb 2022 22:36:19 -0300 Subject: [PATCH] Fix SC warning --- scripts/linkFiles.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index 550513f..5e615a2 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -93,13 +93,13 @@ loopThroughFiles() { file=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\/other\//, ""); print }') msg="\nWould you like to install:\n\n'/$file'?" [ "$installAll" = true ] || displayDialogBox --yesno "$msg" || continue - files+=("$srcFile") + files+=("$srcFile" " ") done < <(find -H "$DOTFILES/other" -mindepth 1 -type f -print0) fi password=$(displayDialogBox --passwordbox "\nEnter your password." VALUES 3>&1 1>&2 2>&3) echo "$password" | sudo -S bash -c "" > /dev/null 2>&1 - cmd="$(declare -f runDetachedScript); $(declare -f linkFile); runDetachedScript getDialogBox ${files[@]}" + cmd="$(declare -f runDetachedScript); $(declare -f linkFile); runDetachedScript getDialogBox ${files[*]}" echo "$password" | sudo -S bash -c "$cmd" unset password }