download_from_git.sh 129 B

123456789
  1. #!/bin/sh
  2. set -exu
  3. (
  4. cd "$BASE_DIRECTORY"
  5. git clone --recurse-submodules --branch "$GIT_BRANCH" --depth 1 "$GIT_URL"
  6. )