summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/copy_bundle_assets.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/copy_bundle_assets.sh b/scripts/copy_bundle_assets.sh
new file mode 100755
index 00000000..ec16ddc5
--- /dev/null
+++ b/scripts/copy_bundle_assets.sh
@@ -0,0 +1,13 @@
+#!/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/"