From accb99b0dc160fb5f99c9248c187af449385ea0b Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 20 Jan 2022 01:32:59 -0300 Subject: [PATCH] Update startRice() --- scripts/bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index b56763e..f337e52 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -109,10 +109,10 @@ startRice() { getGitconfigData source scripts/linkFiles.sh if [[ -n $runUserScripts && $runUserScripts = true ]]; then - local lastFolder=$(pwd -P) + lastFolder=$(pwd -P) cd .. || { echo "Couldn't cd into parent folder." 1>&2 && exit 1; } for script in $(find -H scripts -type f); do - source $script + source "$script" done cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; } fi