From c5f12aadcb2399416584c66184c82a91674a058c Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 24 Jan 2022 23:41:54 -0300 Subject: [PATCH] Fix bug in runDetachedScript() --- scripts/linkFiles.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/linkFiles.sh b/scripts/linkFiles.sh index e7d0cb8..a819fe7 100755 --- a/scripts/linkFiles.sh +++ b/scripts/linkFiles.sh @@ -78,7 +78,7 @@ loopThroughFiles() { if [ -d "$DOTFILES/other" ]; then files="" while read -r -d '' item; do - item=$(echo $item | awk '{ sub(/.*dotfiles\/other\//, ""); print }') + item=$(echo "$item" | awk '{ sub(/.*dotfiles\/other\//, ""); print }') files="${files}$item\n" done < <(find -H "$DOTFILES/other" -mindepth 1 -type f -print0) displayDialogBox --yesno "There are 'other' files, would you like to install them?\n\n${files}" || return @@ -91,7 +91,7 @@ loopThroughFiles() { } runDetachedScript() { - source scripts/common.sh + source sadedot/scripts/common.sh setDialogBox "$1" SADEDOT=$(pwd -P)