summaryrefslogtreecommitdiff
path: root/scripts/copy_bundle_assets.sh
diff options
context:
space:
mode:
authormatt korwel <[email protected]>2025-06-09 12:19:42 -0700
committerGitHub <[email protected]>2025-06-09 12:19:42 -0700
commit3b943c1582026bdf65feb13a73259ce0e034ab2f (patch)
tree3368aa85053b8599fe1fb1349383736890ea73e0 /scripts/copy_bundle_assets.sh
parent2182a1cd2cb83071b9defad2314a689d773363e7 (diff)
Windows: Refactor Shell Scripts to Node.js for Cross-Platform Compatibility (#784)
Diffstat (limited to 'scripts/copy_bundle_assets.sh')
-rwxr-xr-xscripts/copy_bundle_assets.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/copy_bundle_assets.sh b/scripts/copy_bundle_assets.sh
deleted file mode 100755
index 93d46364..00000000
--- a/scripts/copy_bundle_assets.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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/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/" \ No newline at end of file