From 1c247ed8bc530cf2d02b0f5b3fb0d65c5f637e29 Mon Sep 17 00:00:00 2001 From: sam hoang Date: Sat, 1 Feb 2025 09:59:34 +0700 Subject: [PATCH] revert not intentional change --- src/core/prompts/sections/mcp-servers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/prompts/sections/mcp-servers.ts b/src/core/prompts/sections/mcp-servers.ts index 8d3265f..3f7ec88 100644 --- a/src/core/prompts/sections/mcp-servers.ts +++ b/src/core/prompts/sections/mcp-servers.ts @@ -98,7 +98,7 @@ weather-server/ ... "type": "module", // added by default, uses ES module syntax (import/export) rather than CommonJS (require/module.exports) (Important to know if you create additional scripts in this server repository like a get-refresh-token.js script) "scripts": { - "build": "tsc && node -e "require('fs').chmodSync('build/index.js', '755')"", + "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", ... } ...