Skip to content

Commit

Permalink
Fix lowercase script path
Browse files Browse the repository at this point in the history
Signed-off-by: Henrik Panhans <henrik@panhans.dev>
  • Loading branch information
henrik-dmg committed Oct 21, 2024
1 parent 908f9e7 commit 5fc94d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/configure-hooks
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOOKS=$(git rev-parse --git-path hooks)
ROOT=$(git rev-parse --show-toplevel)

# Symlink the hooks from scripts/hooks to the $HOOKS directory
for hook in "${ROOT}"/scripts/hooks/*; do
for hook in "${ROOT}"/Scripts/hooks/*; do
HOOK_NAME=$(basename $hook)
echo "Symlinking $HOOK_NAME to $HOOKS/$HOOK_NAME"
ln -sf $hook $HOOKS/$HOOK_NAME
Expand Down

0 comments on commit 5fc94d8

Please sign in to comment.