mirror of
https://github.com/distribution/distribution.git
synced 2026-01-21 14:14:23 +00:00
13 lines
279 B
Bash
Executable File
13 lines
279 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
GOLANGCI_LINT_VERSION="v1.50.1"
|
|
|
|
#
|
|
# Install developer tools to $GOBIN (or $GOPATH/bin if unset)
|
|
#
|
|
set -eu -o pipefail
|
|
|
|
cd /tmp
|
|
go install github.com/LK4D4/vndr@latest
|
|
go install "github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_LINT_VERSION}"
|