Update startRice()
This commit is contained in:
parent
89ca2fbf3f
commit
accb99b0dc
|
@ -109,10 +109,10 @@ startRice() {
|
||||||
getGitconfigData
|
getGitconfigData
|
||||||
source scripts/linkFiles.sh
|
source scripts/linkFiles.sh
|
||||||
if [[ -n $runUserScripts && $runUserScripts = true ]]; then
|
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; }
|
cd .. || { echo "Couldn't cd into parent folder." 1>&2 && exit 1; }
|
||||||
for script in $(find -H scripts -type f); do
|
for script in $(find -H scripts -type f); do
|
||||||
source $script
|
source "$script"
|
||||||
done
|
done
|
||||||
cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; }
|
cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; }
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue