diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 56015ab..e0050f2 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -126,11 +126,14 @@ runUserScripts() { } startRice() { - msg="\nThis script will configure gitconfig, install the dotfiles" + msg="\nThis script will configure gitconfig" if [[ -n $userScriptsFlag && $userScriptsFlag = true ]]; then - msg="${msg}, and then run the scripts of the '$(basename "$PWD")/scripts' folder" + msg="${msg}, install the dotfiles, and then run the scripts of the" + msg="${msg} '$(basename "$PWD")/scripts' folder." + else + msg="${msg} and install the dotfiles." fi - msg="${msg}. Would you like to continue?" + msg="${msg} Would you like to continue?" displayDialogBox --title "sadedot" --yesno "$msg" || return displayDialogBox --infobox "\nUpdating sadedot submodule." VALUES { cd ..; sh sadedot/scripts/update.sh 2>&1 | debug; }