Refactor update.sh
This commit is contained in:
parent
c205d70958
commit
f90f0027b0
|
@ -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
|
Loading…
Reference in New Issue