From 03c7021270eee8b78ed32c365c2b31296cd89ff8 Mon Sep 17 00:00:00 2001 From: hongxuww Date: Thu, 16 Oct 2025 02:11:48 +0000 Subject: [PATCH] Fix: incorrect command formatting in agent context file, refix #895 --- scripts/bash/update-agent-context.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bash/update-agent-context.sh b/scripts/bash/update-agent-context.sh index ba10ec2f..71d7e68d 100644 --- a/scripts/bash/update-agent-context.sh +++ b/scripts/bash/update-agent-context.sh @@ -250,7 +250,7 @@ get_commands_for_language() { echo "cargo test && cargo clippy" ;; *"JavaScript"*|*"TypeScript"*) - echo "npm test \&\& npm run lint" + echo "npm test \\&\\& npm run lint" ;; *) echo "# Add commands for $lang"