mirror of
https://github.com/Xevion/spotify-quickauth.git
synced 2025-12-06 03:16:35 -06:00
10 lines
170 B
Bash
Executable File
Vendored
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 |