Refactor update.sh
This commit is contained in:
parent
c205d70958
commit
f90f0027b0
|
@ -1,7 +1,11 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
git submodule update --remote --merge
|
runScript() {
|
||||||
gitStatus=$(git status --porcelain)
|
git submodule update --remote --merge
|
||||||
grep -q "sadedot" <(echo "$gitStatus") || return
|
gitStatus=$(git status --porcelain)
|
||||||
git commit -m "Update sadedot submodule" sadedot
|
grep -q "sadedot" <(echo "$gitStatus") || return
|
||||||
git push
|
git commit -m "Update sadedot submodule" sadedot
|
||||||
|
git push
|
||||||
|
}
|
||||||
|
|
||||||
|
runScript
|
Loading…
Reference in New Issue