diff --git a/scripts/update.sh b/scripts/update.sh index 0cff857..69c442b 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -runScript() { +updateSubmodules() { git submodule update --remote --merge gitStatus=$(git status --porcelain) grep -q "sadedot" <(echo "$gitStatus") || return @@ -8,4 +8,14 @@ runScript() { git push } +runScript() { + lastFolder=$(pwd -P) + sadedotParentFolder=$(pwd -P | awk '{ sub(/\/sadedot.*/, ""); print }') + cd "$sadedotParentFolder" || { echo "Couldn't cd into '$sadedotParentFolder'." 1>&2 && exit 1; } + + updateSubmodules + + cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; } +} + runScript \ No newline at end of file