From c58c32a194aa49104dcc461aee063f41338855e5 Mon Sep 17 00:00:00 2001 From: Ian Frost Date: Fri, 6 Feb 2026 13:59:20 +1000 Subject: [PATCH] Alias the required GITHUB_PACKAGES_TOKEN during dotfiles setup --- bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap.sh b/bootstrap.sh index d2f956f..76f6f61 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -63,6 +63,8 @@ if [[ -n "$input_token" ]]; then GITHUB_TOKEN="$input_token" sed -i '' '/^GITHUB_TOKEN=/d' $HOME/environment/environment.zsh echo "GITHUB_TOKEN=${GITHUB_TOKEN}" >> $HOME/environment/environment.zsh + sed -i '' '/^GITHUB_PACKAGES_TOKEN=/d' $HOME/environment/environment.zsh + echo "GITHUB_PACKAGES_TOKEN=\$GITHUB_TOKEN" >> $HOME/environment/environment.zsh elif [[ -z "$current_token" ]]; then echo "ERROR: GITHUB_TOKEN is required" exit 1