Skip to content

Commit 6ae30a9

Browse files
sjnimsclaude
andcommitted
fix(command-development): correct grep pattern in testing-strategies
The grep command for verifying bash command syntax was searching for the escaped pattern `!\`` instead of the actual syntax `!``. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e4f730a commit 6ae30a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/plugin-dev/skills/command-development/references/testing-strategies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ echo "Test: \$1 and \$2" > .claude/commands/test-args.md
677677
grep "allowed-tools" .claude/commands/my-command.md
678678

679679
# Verify command syntax
680-
grep '!\`' .claude/commands/my-command.md
680+
grep '!`' .claude/commands/my-command.md
681681

682682
# Test command manually
683683
date

0 commit comments

Comments
 (0)