mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-11-03 01:13:18 +03:00
9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Must be kept in sync with the version in .github/workflows/ci.yml
|
|
version="v2.4.0"
|
|
|
|
go run "github.com/golangci/golangci-lint/v2/cmd/golangci-lint@$version" "$@"
|