10
0
mirror of https://gitlab.com/scemama/EZFIO.git synced 2024-06-19 03:35:41 +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