diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/build_sandbox.sh | 10 | ||||
| -rwxr-xr-x | scripts/copy_bundle_assets.sh | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/scripts/build_sandbox.sh b/scripts/build_sandbox.sh index 81d4a196..1012f790 100755 --- a/scripts/build_sandbox.sh +++ b/scripts/build_sandbox.sh @@ -57,10 +57,10 @@ fi echo "packing @gemini-code/cli ..." rm -f packages/cli/dist/gemini-code-cli-*.tgz npm pack -w @gemini-code/cli --pack-destination ./packages/cli/dist &>/dev/null -# pack server -echo "packing @gemini-code/server ..." -rm -f packages/server/dist/gemini-code-server-*.tgz -npm pack -w @gemini-code/server --pack-destination ./packages/server/dist &>/dev/null +# pack core +echo "packing @gemini-code/core ..." +rm -f packages/core/dist/gemini-code-server-*.tgz +npm pack -w @gemini-code/core --pack-destination ./packages/core/dist &>/dev/null # give node user (used during installation, see Dockerfile) access to these files chmod 755 packages/*/dist/gemini-code-*.tgz @@ -89,4 +89,4 @@ else $CMD build "${build_args[@]}" >$BUILD_STDOUT fi $CMD image prune -f >/dev/null -echo "built $IMAGE" +echo "built $IMAGE"
\ No newline at end of file diff --git a/scripts/copy_bundle_assets.sh b/scripts/copy_bundle_assets.sh index ec16ddc5..93d46364 100755 --- a/scripts/copy_bundle_assets.sh +++ b/scripts/copy_bundle_assets.sh @@ -4,10 +4,10 @@ mkdir -p bundle # Copy specific shell files to the root of the bundle directory -cp "packages/server/src/tools/shell.md" "bundle/shell.md" -cp "packages/server/src/tools/shell.json" "bundle/shell.json" +cp "packages/core/src/tools/shell.md" "bundle/shell.md" +cp "packages/core/src/tools/shell.json" "bundle/shell.json" # Find and copy all .sb files from packages to the root of the bundle directory find packages -name '*.sb' -exec cp -f {} bundle/ \; -echo "Assets copied to bundle/" +echo "Assets copied to bundle/"
\ No newline at end of file |
