|
1 | 1 | #!/bin/sh |
2 | 2 |
|
| 3 | +if [ "$LEFTHOOK_VERBOSE" = "1" -o "$LEFTHOOK_VERBOSE" = "true" ]; then |
| 4 | + set -x |
| 5 | +fi |
| 6 | + |
3 | 7 | if [ "$LEFTHOOK" = "0" ]; then |
4 | 8 | exit 0 |
5 | 9 | fi |
6 | 10 |
|
7 | 11 | call_lefthook() |
8 | 12 | { |
9 | | - dir="$(git rev-parse --show-toplevel)" |
10 | | - osArch=$(echo "$(uname)" | tr '[:upper:]' '[:lower:]') |
11 | | - cpuArch=$(echo "$(uname -m)" | sed 's/aarch64/arm64/') |
12 | | - |
13 | | - if lefthook -h >/dev/null 2>&1 |
14 | | - then |
15 | | - eval lefthook $@ |
16 | | - elif test -f "$dir/node_modules/lefthook/bin/index.js" |
17 | | - then |
18 | | - eval "\"$dir/node_modules/lefthook/bin/index.js\" $@" |
19 | | - elif test -f "$dir/node_modules/@evilmartians/lefthook/bin/lefthook_${osArch}_${cpuArch}/lefthook" |
20 | | - then |
21 | | - eval "\"$dir/node_modules/@evilmartians/lefthook/bin/lefthook_${osArch}_${cpuArch}/lefthook\" $@" |
22 | | - elif test -f "$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook_${osArch}_${cpuArch}/lefthook" |
23 | | - then |
24 | | - eval "\"$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook_${osArch}_${cpuArch}/lefthook\" $@" |
25 | | - elif bundle exec lefthook -h >/dev/null 2>&1 |
26 | | - then |
27 | | - bundle exec lefthook $@ |
28 | | - elif yarn lefthook -h >/dev/null 2>&1 |
29 | | - then |
30 | | - yarn lefthook $@ |
31 | | - elif pnpm lefthook -h >/dev/null 2>&1 |
| 13 | + if test -n "$LEFTHOOK_BIN" |
32 | 14 | then |
33 | | - pnpm lefthook $@ |
34 | | - elif npx @evilmartians/lefthook -h >/dev/null 2>&1 |
| 15 | + "$LEFTHOOK_BIN" "$@" |
| 16 | + elif lefthook -h >/dev/null 2>&1 |
35 | 17 | then |
36 | | - npx @evilmartians/lefthook $@ |
| 18 | + lefthook "$@" |
37 | 19 | else |
38 | | - echo "Can't find lefthook in PATH" |
| 20 | + dir="$(git rev-parse --show-toplevel)" |
| 21 | + osArch=$(uname | tr '[:upper:]' '[:lower:]') |
| 22 | + cpuArch=$(uname -m | sed 's/aarch64/arm64/;s/x86_64/x64/') |
| 23 | + if test -f "$dir/node_modules/lefthook-${osArch}-${cpuArch}/bin/lefthook" |
| 24 | + then |
| 25 | + "$dir/node_modules/lefthook-${osArch}-${cpuArch}/bin/lefthook" "$@" |
| 26 | + elif test -f "$dir/node_modules/@evilmartians/lefthook/bin/lefthook-${osArch}-${cpuArch}/lefthook" |
| 27 | + then |
| 28 | + "$dir/node_modules/@evilmartians/lefthook/bin/lefthook-${osArch}-${cpuArch}/lefthook" "$@" |
| 29 | + elif test -f "$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook" |
| 30 | + then |
| 31 | + "$dir/node_modules/@evilmartians/lefthook-installer/bin/lefthook" "$@" |
| 32 | + elif test -f "$dir/node_modules/lefthook/bin/index.js" |
| 33 | + then |
| 34 | + "$dir/node_modules/lefthook/bin/index.js" "$@" |
| 35 | + |
| 36 | + elif bundle exec lefthook -h >/dev/null 2>&1 |
| 37 | + then |
| 38 | + bundle exec lefthook "$@" |
| 39 | + elif yarn lefthook -h >/dev/null 2>&1 |
| 40 | + then |
| 41 | + yarn lefthook "$@" |
| 42 | + elif pnpm lefthook -h >/dev/null 2>&1 |
| 43 | + then |
| 44 | + pnpm lefthook "$@" |
| 45 | + elif swift package plugin lefthook >/dev/null 2>&1 |
| 46 | + then |
| 47 | + swift package --disable-sandbox plugin lefthook "$@" |
| 48 | + elif command -v mint >/dev/null 2>&1 |
| 49 | + then |
| 50 | + mint run csjones/lefthook-plugin "$@" |
| 51 | + else |
| 52 | + echo "Can't find lefthook in PATH" |
| 53 | + fi |
39 | 54 | fi |
40 | 55 | } |
41 | 56 |
|
42 | | -call_lefthook "run prepare-commit-msg $@" |
| 57 | +call_lefthook run "prepare-commit-msg" "$@" |
0 commit comments