Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rollback packaging changes #776

Merged
merged 1 commit into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/templates/hook.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ call_lefthook()
mint run csjones/lefthook-plugin "$@"
elif command -v npx >/dev/null 2>&1
then
npx lefthook-${osArch}-${cpuArch} "$@"
npx lefthook "$@"
else
echo "Can't find lefthook in PATH"
{{- if .AssertLefthookInstalled}}
Expand Down
3 changes: 0 additions & 3 deletions packaging/npm/lefthook-darwin-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "lefthook-darwin-arm64",
"version": "1.7.3",
"description": "The macOS ARM 64-bit binary for lefthook, git hooks manager.",
"bin": {
"lefthook": "bin/lefthook"
},
"preferUnplugged": false,
"repository": "https://github.com/evilmartians/lefthook",
"license": "MIT",
Expand Down
3 changes: 0 additions & 3 deletions packaging/npm/lefthook-darwin-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "lefthook-darwin-x64",
"version": "1.7.3",
"description": "The macOS 64-bit binary for lefthook, git hooks manager.",
"bin": {
"lefthook": "bin/lefthook"
},
"preferUnplugged": false,
"repository": "https://github.com/evilmartians/lefthook",
"license": "MIT",
Expand Down
3 changes: 0 additions & 3 deletions packaging/npm/lefthook-freebsd-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "lefthook-freebsd-arm64",
"version": "1.7.3",
"description": "The FreeBSD ARM 64-bit binary for lefthook, git hooks manager.",
"bin": {
"lefthook": "bin/lefthook"
},
"preferUnplugged": false,
"repository": "https://github.com/evilmartians/lefthook",
"license": "MIT",
Expand Down
3 changes: 0 additions & 3 deletions packaging/npm/lefthook-freebsd-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "lefthook-freebsd-x64",
"version": "1.7.3",
"description": "The FreeBSD 64-bit binary for lefthook, git hooks manager.",
"bin": {
"lefthook": "bin/lefthook"
},
"preferUnplugged": false,
"repository": "https://github.com/evilmartians/lefthook",
"license": "MIT",
Expand Down
3 changes: 0 additions & 3 deletions packaging/npm/lefthook-linux-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "lefthook-linux-arm64",
"version": "1.7.3",
"description": "The Linux ARM 64-bit binary for lefthook, git hooks manager.",
"bin": {
"lefthook": "bin/lefthook"
},
"preferUnplugged": false,
"repository": "https://github.com/evilmartians/lefthook",
"license": "MIT",
Expand Down
3 changes: 0 additions & 3 deletions packaging/npm/lefthook-linux-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "lefthook-linux-x64",
"version": "1.7.3",
"description": "The Linux 64-bit binary for lefthook, git hooks manager.",
"bin": {
"lefthook": "bin/lefthook"
},
"preferUnplugged": false,
"repository": "https://github.com/evilmartians/lefthook",
"license": "MIT",
Expand Down
3 changes: 0 additions & 3 deletions packaging/npm/lefthook-windows-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "lefthook-windows-arm64",
"version": "1.7.3",
"description": "The Windows ARM 64-bit binary for lefthook, git hooks manager.",
"bin": {
"lefthook": "bin/lefthook"
},
"preferUnplugged": false,
"repository": "https://github.com/evilmartians/lefthook",
"license": "MIT",
Expand Down
3 changes: 0 additions & 3 deletions packaging/npm/lefthook-windows-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "lefthook-windows-x64",
"version": "1.7.3",
"description": "The Windows 64-bit binary for lefthook, git hooks manager.",
"bin": {
"lefthook": "bin/lefthook"
},
"preferUnplugged": false,
"repository": "https://github.com/evilmartians/lefthook",
"license": "MIT",
Expand Down
Loading