update deploy script

pull/1/head
Evan Hemsley 2019-05-21 18:25:11 -07:00
parent dd9bc98e4f
commit 80b028068f
1 changed files with 12 additions and 0 deletions

View File

@ -22,3 +22,15 @@ git push origin master
# Come Back up to the Project Root
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."