2017-12-20 15:29:27 -05:00
|
|
|
#!/bin/sh
|
2018-01-02 15:57:45 -05:00
|
|
|
|
|
|
|
# Check if file exists with -f. Check if in in the gdk rook directory.
|
2018-01-02 15:49:39 -05:00
|
|
|
if [ ! -f ../GDK_ROOT ]; then
|
|
|
|
echo "Please run script from gitlab (e.g. gitlab-development-kit/gitlab) root directory."
|
|
|
|
exit 1
|
|
|
|
fi
|
2017-12-20 15:29:27 -05:00
|
|
|
|
2018-01-02 15:49:39 -05:00
|
|
|
PRECOMMIT=$(git rev-parse --git-dir)/hooks/pre-commit
|
|
|
|
|
2018-01-02 15:57:45 -05:00
|
|
|
# Check if symlink exists with -L. Check if script was already installed.
|
|
|
|
if [ -L $PRECOMMIT ]; then
|
2018-01-02 15:49:39 -05:00
|
|
|
echo "Pre-commit script already installed."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
ln -s ./pre-commit $PRECOMMIT
|
|
|
|
echo "Pre-commit script installed successfully"
|