Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-03-15 14:52:15 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-03-24 16:54:07 +0300
commit232a13c37ff758e733052e40e12fc8ca128868f1 (patch)
tree79a5e911a697fdf9a28f0d50490888698324f099
parent5a9212a5513e541d59f3e26850e2b28aff11a4ac (diff)
Makefile: Fix name of `GOTESTSUM_VERSION` variable
Fix name of the `GOTESTSUM_VERSION` variable, which was accidentally called `GOSUMTEST_VERSION`.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3cec24dbe..09212eabb 100644
--- a/Makefile
+++ b/Makefile
@@ -75,7 +75,7 @@ GOLANGCI_LINT_VERSION ?= 1.44.2
GOCOVER_COBERTURA_VERSION ?= aaee18c8195c3f2d90e5ef80ca918d265463842a
GOFUMPT_VERSION ?= 0.3.1
GOIMPORTS_VERSION ?= 2538eef75904eff384a2551359968e40c207d9d2
-GOSUMTEST_VERSION ?= v1.7.0
+GOTESTSUM_VERSION ?= v1.7.0
GO_LICENSES_VERSION ?= v1.0.0
# https://pkg.go.dev/github.com/protocolbuffers/protobuf
PROTOC_VERSION ?= v3.17.3
@@ -717,7 +717,7 @@ ${GOIMPORTS}: TOOL_VERSION = ${GOIMPORTS_VERSION}
${GOLANGCI_LINT}: TOOL_PACKAGE = github.com/golangci/golangci-lint/cmd/golangci-lint
${GOLANGCI_LINT}: TOOL_VERSION = v${GOLANGCI_LINT_VERSION}
${GOTESTSUM}: TOOL_PACKAGE = gotest.tools/gotestsum
-${GOTESTSUM}: TOOL_VERSION = ${GOSUMTEST_VERSION}
+${GOTESTSUM}: TOOL_VERSION = ${GOTESTSUM_VERSION}
${GO_LICENSES}: TOOL_PACKAGE = github.com/google/go-licenses
${GO_LICENSES}: TOOL_VERSION = ${GO_LICENSES_VERSION}
${PROTOC_GEN_GO}: TOOL_PACKAGE = google.golang.org/protobuf/cmd/protoc-gen-go