astroport/git-update.sh

8 lines
127 B
Bash
Raw Normal View History

#!/bin/bash
echo "Updating git submodules ..."
git submodule foreach git pull origin master
echo "Astroport updated!"
exit 0