Files
spotify-quickauth/.hooks/link.sh

10 lines
170 B
Bash
Executable File
Vendored

#!/bin/bash
hooks=(
"pre-commit"
"pre-push"
)
for hook in "${hooks[@]}"; do
chmod +x .hooks/$hook.sh
ln -s -f ../../.hooks/$hook.sh .git/hooks/$hook
done