Merge pull request #895 from zidoshare/main

Fix: incorrect command formatting in agent context file
This commit is contained in:
Den Delimarsky
2025-10-15 10:51:34 -07:00
committed by GitHub

View File

@@ -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"