We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
go install
go get
1 parent 73b4eca commit da2dac0Copy full SHA for da2dac0
hack/update-toc.sh
@@ -35,10 +35,11 @@ exitHandler() (
35
)
36
trap exitHandler EXIT
37
38
-# perform go get in a temp dir as we are not tracking this version in a go module
39
-# if we do the go get in the repo, it will create / update a go.mod and go.sum
+# Perform go install in a temp dir as we are not tracking this version in a go
+# module.
40
+# If we do the go install in the repo, it will create/update go.mod and go.sum.
41
cd "${TMP_DIR}"
-GO111MODULE=on GOBIN="${TMP_DIR}" go get "sigs.k8s.io/mdtoc@${TOOL_VERSION}"
42
+GO111MODULE=on GOBIN="${TMP_DIR}" go install "sigs.k8s.io/mdtoc@${TOOL_VERSION}"
43
export PATH="${TMP_DIR}:${PATH}"
44
cd "${ROOT}"
45
0 commit comments