Fix SC warning

This commit is contained in:
Santiago Lo Coco 2022-02-15 22:36:19 -03:00
parent 6139d641df
commit fcd2c457f3
1 changed files with 2 additions and 2 deletions

View File

@ -93,13 +93,13 @@ loopThroughFiles() {
file=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\/other\//, ""); print }') file=$(echo "$srcFile" | awk '{ sub(/.*dotfiles\/other\//, ""); print }')
msg="\nWould you like to install:\n\n'/$file'?" msg="\nWould you like to install:\n\n'/$file'?"
[ "$installAll" = true ] || displayDialogBox --yesno "$msg" || continue [ "$installAll" = true ] || displayDialogBox --yesno "$msg" || continue
files+=("$srcFile") files+=("$srcFile" " ")
done < <(find -H "$DOTFILES/other" -mindepth 1 -type f -print0) done < <(find -H "$DOTFILES/other" -mindepth 1 -type f -print0)
fi fi
password=$(displayDialogBox --passwordbox "\nEnter your password." VALUES 3>&1 1>&2 2>&3) password=$(displayDialogBox --passwordbox "\nEnter your password." VALUES 3>&1 1>&2 2>&3)
echo "$password" | sudo -S bash -c "" > /dev/null 2>&1 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" echo "$password" | sudo -S bash -c "$cmd"
unset password unset password
} }