From b4ca3412dd370be50d7f3608195bfe8b1f3aa7c8 Mon Sep 17 00:00:00 2001 From: Calle Pettersson Date: Sun, 25 Dec 2016 07:55:42 +0100 Subject: [PATCH] Fix arch name typo --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index fa83dbba..540a9437 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,7 +7,7 @@ environment: matrix: - MSI_ARCH: amd64 GOARCH: amd64 - - MSI_ARCH: x86 + - MSI_ARCH: 386 GOARCH: 386 clone_folder: c:\gopath\src\github.com\martinlindhe\wmi_exporter @@ -24,6 +24,7 @@ build_script: - govendor test -v +local - promu build -v . - ps: | + $ErrorActionPreference = "Stop" if($env:APPVEYOR_REPO_TAG -eq "True") { # The MSI version is not semver compliant, so just take the numerical parts $Version = $env:APPVEYOR_REPO_TAG_NAME -replace '^v?([0-9\.]+).*$','$1'