10
0
mirror of https://gitlab.com/scemama/EZFIO.git synced 2024-07-11 22:03:39 +02:00
EZFIO/git-tools/install_tools.sh

11 lines
121 B
Bash
Executable File

#!/bin/bash
OLD_DIR=$PWD
cd ../.git/hooks/
for i in commit-msg post-commit
do
rm $i
ln -s $OLD_DIR/$i $PWD/$i
done