mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
14 lines
431 B
Bash
14 lines
431 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Create the bundle directory if it doesn't exist
|
||
|
|
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"
|
||
|
|
|
||
|
|
# 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/"
|