diff --git a/scripts/update.sh b/scripts/update.sh index 24a37be..0cff857 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -1,7 +1,11 @@ #!/usr/bin/env bash -git submodule update --remote --merge -gitStatus=$(git status --porcelain) -grep -q "sadedot" <(echo "$gitStatus") || return -git commit -m "Update sadedot submodule" sadedot -git push +runScript() { + git submodule update --remote --merge + gitStatus=$(git status --porcelain) + grep -q "sadedot" <(echo "$gitStatus") || return + git commit -m "Update sadedot submodule" sadedot + git push +} + +runScript \ No newline at end of file