download_from_git.sh 108 B

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