From a6fba0caac6eb585a3fdb69730975ea5e218c7d3 Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Wed, 26 Jul 2017 02:00:16 +0200 Subject: [PATCH] AppVeyor: Unset GOOS and GOARCH for code generation deps installation. --- appveyor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index c044b0c..427db1f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -45,7 +45,11 @@ install: - path %GOPATH%\bin;%PATH% # Install code generation dependencies + - setlocal + - set GOOS= + - set GOARCH= - go get -v github.com/josephspurrier/goversioninfo/cmd/goversioninfo github.com/icedream/ui2walk + - endlocal build_script: # Build with Go