10
0
mirror of https://gitlab.com/scemama/EZFIO.git synced 2024-08-30 00:03:46 +02:00
EZFIO/git-tools/install_tools.sh

11 lines
133 B
Bash
Raw Normal View History

2014-08-26 15:04:22 +02:00
#!/bin/bash
OLD_DIR=$PWD
cd ../.git/hooks/
for i in commit-msg post-commit
do
rm --force -- $i
2014-08-26 15:04:22 +02:00
ln -s $OLD_DIR/$i $PWD/$i
done