From efd230e46f08e06bb7c22db6a7e6fce22d54f377 Mon Sep 17 00:00:00 2001 From: GrantBirki Date: Wed, 8 Oct 2025 16:13:49 -0700 Subject: [PATCH] fix: ensure CI variable defaults to false in build script --- script/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/build b/script/build index 0298b62..fca4a5e 100755 --- a/script/build +++ b/script/build @@ -29,7 +29,7 @@ else goreleaser build --snapshot --clean "$@" fi -if [[ "$CI" == "true" ]]; then +if [[ "${CI:-false}" == "true" ]]; then tree -L 2 -a --dirsfirst -C -F -h -D dist/ echo "artifact_dir=dist" >> $GITHUB_OUTPUT fi