From 6a79acc2dc309bc99dc431182ba90535d9c2444d Mon Sep 17 00:00:00 2001 From: mh-cbon Date: Sat, 25 Jun 2016 23:41:59 +0200 Subject: [PATCH] go fmt --- appveyor-recipe.md | 2 -- appveyor.yml | 8 ++++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/appveyor-recipe.md b/appveyor-recipe.md index c03a8e0..ccd6b7e 100644 --- a/appveyor-recipe.md +++ b/appveyor-recipe.md @@ -51,11 +51,9 @@ build_script: - set GOARCH=386 - go build -o go-msi.exe main.go # Change this - go-msi.exe make --msi %APPVEYOR_BUILD_FOLDER%\go-msi-%APPVEYOR_REPO_TAG_NAME%-x86.msi --version %APPVEYOR_REPO_TAG_NAME% --arch x86 # Change this - - echo %GOARCH% - set GOARCH=amd64 - go build -o go-msi.exe main.go # Change this - go-msi.exe make --msi %APPVEYOR_BUILD_FOLDER%\go-msi-%APPVEYOR_REPO_TAG_NAME%-x64.msi --version %APPVEYOR_REPO_TAG_NAME% --arch x64 # Change this - - echo %GOARCH% # to disable automatic tests test: off diff --git a/appveyor.yml b/appveyor.yml index 5e710e0..a70a3c7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -27,10 +27,14 @@ install: # to run your custom scripts instead of automatic MSBuild build_script: - glide install - - GOARCh=386 go build -o go-msi.exe main.go + - set GOARCH=386 + - go build -o go-msi.exe main.go - .\go-msi.exe make --msi %APPVEYOR_BUILD_FOLDER%\go-msi-%APPVEYOR_REPO_TAG_NAME%-x86.msi --version %APPVEYOR_REPO_TAG_NAME% --arch x86 - - GOARCh=amd64 go build -o go-msi.exe main.go + - echo %GOARCH% + - set GOARCH=amd64 + - go build -o go-msi.exe main.go - .\go-msi.exe make --msi %APPVEYOR_BUILD_FOLDER%\go-msi-%APPVEYOR_REPO_TAG_NAME%-x64.msi --version %APPVEYOR_REPO_TAG_NAME% --arch x64 + - echo %GOARCH% # to disable automatic tests test: off