mirror of
https://gitlab.com/scemama/EZFIO.git
synced 2024-10-31 19:23:43 +01:00
11 lines
133 B
Bash
Executable File
11 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OLD_DIR=$PWD
|
|
cd ../.git/hooks/
|
|
|
|
for i in commit-msg post-commit
|
|
do
|
|
rm --force -- $i
|
|
ln -s $OLD_DIR/$i $PWD/$i
|
|
done
|