init-repositories.sh 193 B

1234567891011
  1. #!/bin/bash
  2. GIT=/usr/bin/git
  3. if [ ! -f ${GIT} ]; then
  4. GIT=/opt/local/bin/git
  5. fi
  6. # Update external git repositories needed to build the project
  7. "$GIT" submodule update --init --recursive