This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| # Force Git SSH transport to fail fast on network drops | |
| export GIT_SSH_COMMAND="ssh -o ConnectTimeout=10 -o ServerAliveInterval=15 -o ServerAliveCountMax=3 -o BatchMode=yes" | |
| # --- Core Definitions --- | |
| REPO="" | |
| TARGET_FILE="" | |
| OUT_DIR="" |