Skip to content

Commit

Permalink
Add .lefthookrc loading
Browse files Browse the repository at this point in the history
  • Loading branch information
skryukov committed May 12, 2021
1 parent 45e9234 commit 016a10b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master (unreleased)

- [PR](https://github.com/evilmartians/lefthook/pull/185) Add `.lefthookrc` to fix incorrect PATH @skryukov
- [PR](https://github.com/evilmartians/lefthook/pull/182) Support git workspaces and submodules @skryukov


# 0.7.4 (2021-04-30)

- [PR](https://github.com/evilmartians/lefthook/pull/171) Improve check for installed git @DmitryTsepelev
Expand Down
4 changes: 4 additions & 0 deletions cmd/templates/hook.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ if [ -t 1 ] ; then
exec < /dev/tty ; # <- enables interactive shell
fi

if [ -f ~/.lefthookrc ]; then
source ~/.lefthookrc
fi

dir="$(cd "$(dirname "$(dirname "$(dirname "$0")")")" >/dev/null 2>&1 || exit ; pwd -P)"

call_lefthook()
Expand Down
4 changes: 4 additions & 0 deletions spec/fixtures/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ if [ -t 1 ] ; then
exec < /dev/tty ; # <- enables interactive shell
fi

if [ -f ~/.lefthookrc ]; then
source ~/.lefthookrc
fi

dir="$(cd "$(dirname "$(dirname "$(dirname "$0")")")" >/dev/null 2>&1 || exit ; pwd -P)"

call_lefthook()
Expand Down
4 changes: 4 additions & 0 deletions spec/fixtures/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ if [ -t 1 ] ; then
exec < /dev/tty ; # <- enables interactive shell
fi

if [ -f ~/.lefthookrc ]; then
source ~/.lefthookrc
fi

dir="$(cd "$(dirname "$(dirname "$(dirname "$0")")")" >/dev/null 2>&1 || exit ; pwd -P)"

call_lefthook()
Expand Down

0 comments on commit 016a10b

Please sign in to comment.