From 23f6aaf7a94d935c54610a1f4ed1560ec5b5428d Mon Sep 17 00:00:00 2001 From: Drew Hess Date: Tue, 5 Mar 2024 20:00:05 +0000 Subject: [PATCH] fix(buildkite): fix missing export Signed-off-by: Drew Hess --- nix/pkgs/ci-scripts/cachix-push-flake-dev-shell.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/pkgs/ci-scripts/cachix-push-flake-dev-shell.sh b/nix/pkgs/ci-scripts/cachix-push-flake-dev-shell.sh index 73c05e6d..a39350a9 100644 --- a/nix/pkgs/ci-scripts/cachix-push-flake-dev-shell.sh +++ b/nix/pkgs/ci-scripts/cachix-push-flake-dev-shell.sh @@ -25,6 +25,7 @@ if [[ ! -v CACHIX_AUTH_TOKEN ]]; then CACHIX_AUTH_TOKEN_FILE="$HOME/cachix-$CACHIX_CACHE_NAME" if [[ -f "$CACHIX_AUTH_TOKEN_FILE" ]]; then CACHIX_AUTH_TOKEN=$(tr -d '\n' < "$CACHIX_AUTH_TOKEN_FILE") + export CACHIX_AUTH_TOKEN else echo "CACHIX_AUTH_TOKEN environment variable is not set and no token file can be located, aborting." >&2 exit 2