Commit 636ce937 authored by Zeger-Jan van de Weg's avatar Zeger-Jan van de Weg

Set Go111MODULE to 'off' during compilation

Given more to the Go community moves to Go modules, one might default to
GO111MODULE to on in their environment. If this is done, this project
fails to compile.

By setting the environment for the compilation this is fixed.
parent d18543c7
......@@ -12,7 +12,8 @@ module GoBuild
GO_ENV = {
'GOPATH' => BUILD_DIR,
'GO15VENDOREXPERIMENT' => '1'
'GO15VENDOREXPERIMENT' => '1',
'GO111MODULE' => 'off'
}.freeze
def create_fresh_build_dir
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment