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 dd19a6f commit af2bf79Copy full SHA for af2bf79
plugins/scan.installer
@@ -17,7 +17,11 @@ build() {
17
cd "${DEST}"
18
git fetch --all
19
git checkout -q "${COMMIT}"
20
- PLATFORM_BINARY=docker-scan make native-build
+ # TODO remove GOPROXY override once we updated to Go 1.14+
21
+ # Using goproxy instead of "direct" to work around an issue in go mod
22
+ # on Go 1.13 not working with older git versions (default version on
23
+ # CentOS 7 is git 1.8), see https://github.com/golang/go/issues/38373
24
+ GOPROXY="https://proxy.golang.org" PLATFORM_BINARY=docker-scan make native-build
25
)
26
}
27
0 commit comments