Fix go get in AppVeyor

This commit is contained in:
lukasmartinelli
2016-11-03 13:19:58 +01:00
parent 7d1890156d
commit ca2df37c79
+10 -7
View File
@@ -13,16 +13,19 @@ environment:
# scripts that run after cloning repository # scripts that run after cloning repository
install: install:
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH% - set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
- go version - go version
- go env - go env
- go get - 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 # to run your custom scripts instead of automatic MSBuild
build_script: build_script:
- go vet ./... - go vet ./...
- gofmt -s -l . - gofmt -s -l .
- make - make
# to disable automatic tests # to disable automatic tests
test: off test: off