diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2018-01-17 21:01:06 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2018-01-17 21:01:06 +0000 |
commit | 195448c28c3a3238126e9e21f7b1abb8f186980e (patch) | |
tree | 0d2d760317e17aeb3a7dc0d74ffc5d1978a00cb0 /scripts/add-code-formatters | |
parent | 525b178e5d5cfe127fe2cfc6f211725e6c3089ae (diff) | |
parent | f351cc28c2c878bf491bb0886be65bf35b58b261 (diff) | |
download | gitlab-ce-dispatcher-project-mr-edit.tar.gz |
Merge branch 'master' into 'dispatcher-project-mr-edit'dispatcher-project-mr-edit
# Conflicts:
# app/assets/javascripts/dispatcher.js
Diffstat (limited to 'scripts/add-code-formatters')
-rwxr-xr-x | scripts/add-code-formatters | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/add-code-formatters b/scripts/add-code-formatters deleted file mode 100755 index 56bb8754d80..00000000000 --- a/scripts/add-code-formatters +++ /dev/null @@ -1,18 +0,0 @@ -#!/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 script already installed." - exit 1 -fi - -ln -s ./pre-commit $PRECOMMIT -echo "Pre-commit script installed successfully" |