blob: 58ef03a49133ac265f3f2aff38accaae0814f6bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
# Check if file exists with -f. Check if in in the gdk rook directory.
if [ ! -f ../GDK_ROOT ]; then
echo "Please run script from gitlab (e.g. gitlab-development-kit/gitlab) root directory."
exit 1
fi
PRECOMMIT=$(git rev-parse --git-dir)/hooks/pre-commit
# Check if symlink exists with -L. Check if script was already installed.
if [ ! -L $PRECOMMIT ]; then
echo "Pre-commit not installed. Nothing to remove."
exit 1
fi
rm ./scripts/pre-commit $PRECOMMIT
chmod +x $PRECOMMIT
echo "Pre-commit script installed successfully"
|