Merge pull request #997 from Random-Liu/fix-for-golang-issue

Temporary fix for golang regression #29241.
This commit is contained in:
Lantao Liu 2018-12-14 14:14:50 -08:00 committed by GitHub
commit afb12d728c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,8 @@ fi
# Install critest # Install critest
if [ ! -x "$(command -v ${CRITEST})" ]; then if [ ! -x "$(command -v ${CRITEST})" ]; then
go get -d ${CRITOOL_PKG}/... # FIXME temporarily disabled due to a regression in Go 1.10.6 / 1.11.3 (https://github.com/golang/go/issues/29241)
go get -d ${CRITOOL_PKG} || true
cd ${GOPATH}/src/${CRITOOL_PKG} cd ${GOPATH}/src/${CRITOOL_PKG}
git fetch --all git fetch --all
git checkout ${CRITOOL_VERSION} git checkout ${CRITOOL_VERSION}