From 7a114f095086f2aefa4c3457a99355f065dc5585 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 14 Mar 2019 19:15:14 -0400 Subject: [PATCH] fix env variables --- appveyor.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a2b3da6208..7d4599ab76 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -42,12 +42,12 @@ build_script: - cmd: 7z a ./dist/bw-linux-%PACKAGE_VERSION%.zip ./dist/linux/bw - ps: .\scripts\choco-pack.ps1 - ps: | - checksum -f="./dist/bw-windows-%PACKAGE_VERSION%.zip" ` - -t sha256 | Out-File ./dist/bw-windows-sha256-%PACKAGE_VERSION%.txt - checksum -f="./dist/bw-macos-%PACKAGE_VERSION%.zip" ` - -t sha256 | Out-File ./dist/bw-macos-sha256-%PACKAGE_VERSION%.txt - checksum -f="./dist/bw-linux-%PACKAGE_VERSION%.zip" ` - -t sha256 | Out-File ./dist/bw-linux-sha256-%PACKAGE_VERSION%.txt + checksum -f="./dist/bw-windows-${env:PACKAGE_VERSION}.zip" ` + -t sha256 | Out-File ./dist/bw-windows-sha256-${env:PACKAGE_VERSION}.txt + checksum -f="./dist/bw-macos-${env:PACKAGE_VERSION}.zip" ` + -t sha256 | Out-File ./dist/bw-macos-sha256-${env:PACKAGE_VERSION}.txt + checksum -f="./dist/bw-linux-${env:PACKAGE_VERSION}.zip" ` + -t sha256 | Out-File ./dist/bw-linux-sha256-${env:PACKAGE_VERSION}.txt artifacts: - path: dist/bw-windows-%PACKAGE_VERSION%.zip