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
| #!/bin/bash | |
| # Bootstrap launcher β lives in a public gist. | |
| # Authenticates gh CLI, then pulls and runs the real bootstrap from the private repo. | |
| set -uo pipefail | |
| # ββ Homebrew ββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| if ! command -v brew &>/dev/null; then | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| [[ -f "/opt/homebrew/bin/brew" ]] && eval "$(/opt/homebrew/bin/brew shellenv)" |