From 89ca2fbf3f06667bbd4912fbfe51935c72bf5c54 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 20 Jan 2022 01:26:35 -0300 Subject: [PATCH] Run user scripts --- scripts/bootstrap.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index a45b3da..b56763e 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -31,7 +31,7 @@ checkParameters() { setLogToFile true "$(pwd -P)" ;; -p | --packages) - installPackages=true + runUserScripts=true ;; *) printf '%s: invalid option %s\n' "${0##*/}" "$1" @@ -108,7 +108,14 @@ startRice() { displayDialogBox --title "sadedot" --msgbox "Hi! This script will auto install my dotfiles." getGitconfigData source scripts/linkFiles.sh - [[ -n $installPackages && $installPackages = true ]] && source scripts/install.sh + if [[ -n $runUserScripts && $runUserScripts = true ]]; then + local 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 + done + cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; } + fi displayDialogBox --title "sadedot" --msgbox "All done! Enjoy..." }