diff options
| author | Olcan <[email protected]> | 2025-05-03 10:07:51 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-03 10:07:51 -0700 |
| commit | ae96b8914ed1fb4b1ad998e8abe1791864900e92 (patch) | |
| tree | a349458263c6c8bdb8168db27fb599eadec2f22e /scripts/build_sandbox.sh | |
| parent | cfdbea4dc25b0fe99ceb859d8014601c9b9a795f (diff) | |
fix sandbox prod build w/ custom Dockerfile (#255)
Diffstat (limited to 'scripts/build_sandbox.sh')
| -rwxr-xr-x | scripts/build_sandbox.sh | 4 |
1 files 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 |
