summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBilly Biggs <[email protected]>2025-06-28 02:53:03 -0700
committerGitHub <[email protected]>2025-06-28 09:53:03 +0000
commit25cdf9b762a13aa7bbfab363dc1c85bdf2c3fae1 (patch)
tree7f4c61a914fd092c324301da531d6111e52b7e6b /scripts
parentad7839ea4c6484485678049e8539f109304582fb (diff)
Inline the description and schema of the shell tool in the source (#1709)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/copy_bundle_assets.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/copy_bundle_assets.js b/scripts/copy_bundle_assets.js
index e37e1700..5a3af3e9 100644
--- a/scripts/copy_bundle_assets.js
+++ b/scripts/copy_bundle_assets.js
@@ -31,16 +31,6 @@ if (!existsSync(bundleDir)) {
mkdirSync(bundleDir);
}
-// Copy specific shell files to the root of the bundle directory
-copyFileSync(
- join(root, 'packages/core/src/tools/shell.md'),
- join(bundleDir, 'shell.md'),
-);
-copyFileSync(
- join(root, 'packages/core/src/tools/shell.json'),
- join(bundleDir, 'shell.json'),
-);
-
// Find and copy all .sb files from packages to the root of the bundle directory
const sbFiles = glob.sync('packages/**/*.sb', { cwd: root });
for (const file of sbFiles) {