astroport/git-update.sh

8 lines
127 B
Bash
Executable File

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