mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
commit-msg: Don’t change the current directory for non-Vagrant.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Anders Kaseorg
parent
9427fb7230
commit
8a128ba81e
@@ -7,12 +7,11 @@
|
||||
|
||||
# Do not invoke gitlint if commit message is empty
|
||||
if grep -q '^[^#]' "$1"; then
|
||||
lint_cmd="cd ~/zulip && gitlint"
|
||||
if
|
||||
if [ -z "$VIRTUAL_ENV" ] && command -v vagrant >/dev/null && [ -e .vagrant ]; then
|
||||
! vagrant ssh -c "$lint_cmd"
|
||||
! vagrant ssh -c 'cd ~/zulip && gitlint'
|
||||
else
|
||||
! eval "$lint_cmd"
|
||||
! gitlint
|
||||
fi <"$1"
|
||||
then
|
||||
echo "WARNING: Your commit message does not match Zulip's style guide."
|
||||
|
Reference in New Issue
Block a user