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.
1 parent 5690630 commit 05c9cbfCopy full SHA for 05c9cbf
hack/verify-spelling.sh
@@ -40,7 +40,8 @@ if [[ -z "$(command -v misspell)" ]]; then
40
# perform go get in a temp dir as we are not tracking this version in a go module
41
# if we do the go get in the repo, it will create / update a go.mod and go.sum
42
cd "${TMP_DIR}"
43
- GO111MODULE=auto GOBIN="${TMP_DIR}" go get "github.com/client9/misspell/cmd/misspell@${TOOL_VERSION}"
+ go mod init "${TMP_DIR}"
44
+ GO111MODULE=off GOBIN="${TMP_DIR}" go get "github.com/client9/misspell/cmd/misspell@${TOOL_VERSION}"
45
export PATH="${TMP_DIR}:${PATH}"
46
fi
47
cd "${ROOT}"
0 commit comments