update deploy script
parent
dd9bc98e4f
commit
80b028068f
12
deploy.sh
12
deploy.sh
|
@ -22,3 +22,15 @@ git push origin master
|
||||||
|
|
||||||
# Come Back up to the Project Root
|
# Come Back up to the Project Root
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
# Commit submodule change.
|
||||||
|
msg="updating submodule"
|
||||||
|
if [ $# -eq 1 ]
|
||||||
|
then msg="$1"
|
||||||
|
fi
|
||||||
|
git commit -m "$msg"
|
||||||
|
|
||||||
|
# Push repo.
|
||||||
|
git push origin master
|
||||||
|
|
||||||
|
echo -e "Done."
|
||||||
|
|
Loading…
Reference in New Issue