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 | |
| # Bootstrap a bare Ubuntu x86_64 machine with: gh CLI, Node 20 LTS, Claude Code. | |
| # Idempotent — safe to re-run on a partially-configured machine. | |
| # On OB workstations, gh and conda are pre-installed; those steps no-op automatically. | |
| # | |
| # Usage: bash bootstrap.sh | |
| set -euo pipefail | |
| log() { echo "▸ $*"; } |