diff options
author | Jacob Schatz <jschatz1@gmail.com> | 2018-01-02 16:01:45 -0500 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2018-01-02 16:01:45 -0500 |
commit | 2abf63899d449c74090a4149f508a61e766d47ec (patch) | |
tree | 866febf8782480be381f5a2e37b19a421b952d66 /scripts | |
parent | f6e5772dfc08d31b407b659ae85153eed67d76a6 (diff) | |
download | gitlab-ce-2abf63899d449c74090a4149f508a61e766d47ec.tar.gz |
Add check if run from gitlab development kit root directory.pre-commit-prettier
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/pre-commit | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/pre-commit b/scripts/pre-commit index 380cc8d9022..48935e90a87 100644 --- a/scripts/pre-commit +++ b/scripts/pre-commit @@ -1,4 +1,11 @@ #!/bin/sh + +# Check if file exists with -f. Check if in in the gdk rook directory. +if [ ! -f ../GDK_ROOT ]; then + echo "Please run pre-commit from gitlab (e.g. gitlab-development-kit/gitlab) root directory." + exit 1 +fi + jsfiles=$(git diff --cached --name-only --diff-filter=ACM "*.js" | tr '\n' ' ') [ -z "$jsfiles" ] && exit 0 |