From 9fd2ac79c0619ab2d7ab4b4101858acddd054b62 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 24 Jan 2022 16:45:32 -0300 Subject: [PATCH] Fix SC2044 warning in bootstrap.sh --- scripts/bootstrap.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index b64cddf..20b4db1 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -108,9 +108,14 @@ runUserScripts() { if [[ -n $userScriptsFlag && $userScriptsFlag = true ]]; then lastFolder=$(pwd -P) cd .. || { echo "Couldn't cd into parent folder." 1>&2 && exit 1; } - for script in $(find -H scripts -type f); do + + local IFS= + while read -r -d '' script; do source "$script" - done + done < <(find -H scripts -type f -print0) + + # find -H scripts -type f -exec sh -c 'echo "2 source $1"' -sh {} \; + cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; } fi }