From ca2df37c796a5b3abf7567b0b9b6a10add83c22c Mon Sep 17 00:00:00 2001 From: lukasmartinelli Date: Thu, 3 Nov 2016 13:19:58 +0100 Subject: [PATCH] Fix go get in AppVeyor --- appveyor.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a2da451c..0e58785f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,16 +13,19 @@ environment: # scripts that run after cloning repository install: - - set PATH=%GOPATH%\bin;c:\go\bin;%PATH% - - go version - - go env - - go get +- set PATH=%GOPATH%\bin;c:\go\bin;%PATH% +- go version +- go env +- go get github.com/gorilla/handlers +- go get github.com/gorilla/mux +- go get github.com/gorilla/websocket +- go get github.com/urfave/cli # to run your custom scripts instead of automatic MSBuild build_script: - - go vet ./... - - gofmt -s -l . - - make +- go vet ./... +- gofmt -s -l . +- make # to disable automatic tests test: off