From b3e52b649f12939d78d119d8c06f3e17d7b645d3 Mon Sep 17 00:00:00 2001 From: Effy Elden Date: Mon, 16 Dec 2019 15:52:37 +1100 Subject: [PATCH] Fix environment variable reference in before_deploy.ps1 --- ci/before_deploy.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/before_deploy.ps1 b/ci/before_deploy.ps1 index 0788b1f..280b33a 100644 --- a/ci/before_deploy.ps1 +++ b/ci/before_deploy.ps1 @@ -11,7 +11,7 @@ Set-Location $STAGE $ZIP = "$SRC_DIR\$($env:CRATE_NAME)-$($env:APPVEYOR_REPO_TAG_NAME)-$($env:TARGET).zip" # TODO Update this to package the right artifacts -Copy-Item "$SRC_DIR\target\$($env:TARGET)\release\$(env:CRATE_NAME).exe" '.\' +Copy-Item "$SRC_DIR\target\$($env:TARGET)\release\$($env:CRATE_NAME).exe" '.\' 7z a "$ZIP" *