File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ exitHandler() (
34
34
)
35
35
trap exitHandler EXIT
36
36
37
- # perform go get in a temp dir as we are not tracking this version in a go module
38
- # if we do the go get in the repo, it will create / update a go.mod and go.sum
37
+ # perform go install in a temp dir as we are not tracking this version in a go module
38
+ # if we do the go install in the repo, it will create / update a go.mod and go.sum
39
39
cd " ${TMP_DIR} "
40
- GO111MODULE=on GOBIN=" ${TMP_DIR} " go get " github.com/client9/misspell/cmd/misspell@${TOOL_VERSION} "
40
+ GO111MODULE=on GOBIN=" ${TMP_DIR} " go install " github.com/client9/misspell/cmd/misspell@${TOOL_VERSION} "
41
41
export PATH=" ${TMP_DIR} :${PATH} "
42
42
cd " ${ROOT} "
43
43
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ exitHandler() (
35
35
)
36
36
trap exitHandler EXIT
37
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
38
+ # perform go install in a temp dir as we are not tracking this version in a go module
39
+ # if we do the go install in the repo, it will create / update a go.mod and go.sum
40
40
cd " ${TMP_DIR} "
41
41
GO111MODULE=on GOBIN=" ${TMP_DIR} " go install " sigs.k8s.io/mdtoc@${TOOL_VERSION} "
42
42
export PATH=" ${TMP_DIR} :${PATH} "
You can’t perform that action at this time.
0 commit comments