We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4806586 commit 345853aCopy full SHA for 345853a
2 files changed
.githooks/pre-commit
@@ -93,8 +93,10 @@ if [ -n "$STAGED_FILES" ]; then
93
# Change to the project root
94
cd "$PROJECT_ROOT" || exit 1
95
96
- # Run the tests directly with full path
97
- bash "${PROJECT_ROOT}/scripts/test.sh"
+ # Run the tests directly using a specific path
+ FULL_PATH="/home/gregg/Projects/neovim/plugins/claude-code/scripts/test.sh"
98
+ echo "Running test script at: $FULL_PATH"
99
+ bash "$FULL_PATH"
100
101
# Check if tests passed
102
if [ $? -ne 0 ]; then
lua/test_pre_commit.lua
@@ -0,0 +1 @@
1
+-- Test file for Claude Code pre-commit
0 commit comments