From ae96b8914ed1fb4b1ad998e8abe1791864900e92 Mon Sep 17 00:00:00 2001 From: Olcan Date: Sat, 3 May 2025 10:07:51 -0700 Subject: [PATCH] fix sandbox prod build w/ custom Dockerfile (#255) --- scripts/build_sandbox.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build_sandbox.sh b/scripts/build_sandbox.sh index 8e6ab5c4..ea87e502 100755 --- a/scripts/build_sandbox.sh +++ b/scripts/build_sandbox.sh @@ -63,8 +63,8 @@ if [ "$DOCKERFILE" = "Dockerfile-dev" ]; then fi fi -# prepare global installation files for prod build -if [ "$DOCKERFILE" = "Dockerfile" ]; then +# prepare global installation files for prod builds (anything but Dockerfile-dev) +if [ "$DOCKERFILE" != "Dockerfile-dev" ]; then # pack cli echo "packing @gemini-code/cli ..." rm -f packages/cli/dist/gemini-code-cli-*.tgz