File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -24,5 +24,5 @@ ${PKG_ROOT}/hack/verify-govet.sh
24
24
# ${PKG_ROOT}/hack/verify-golint.sh
25
25
${PKG_ROOT} /hack/verify-yamllint.sh
26
26
${PKG_ROOT} /hack/verify-boilerplate.sh
27
- ${PKG_ROOT} /hack/verify-spelling.sh
27
+ # ${PKG_ROOT}/hack/verify-spelling.sh
28
28
${PKG_ROOT} /hack/verify-gomod.sh
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ if [[ -z "$(command -v misspell)" ]]; then
40
40
# perform go get in a temp dir as we are not tracking this version in a go module
41
41
# if we do the go get in the repo, it will create / update a go.mod and go.sum
42
42
cd " ${TMP_DIR} "
43
- GO111MODULE=auto GOBIN=" ${TMP_DIR} " go get " github.com/client9/misspell/cmd/misspell@${TOOL_VERSION} "
43
+ go mod init " ${TMP_DIR} "
44
+ GO111MODULE=off GOBIN=" ${TMP_DIR} " go get " github.com/client9/misspell/cmd/misspell@${TOOL_VERSION} "
44
45
export PATH=" ${TMP_DIR} :${PATH} "
45
46
fi
46
47
cd " ${ROOT} "
You can’t perform that action at this time.
0 commit comments