From ae42e924ab942d553b69617fb311f33ed4036f3b Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Mon, 29 May 2017 19:13:20 -0500 Subject: [PATCH] Fix regression in packaging: Ensure $ARCH value is used in output name for Slic3r. --- package/win/package_win32.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/win/package_win32.ps1 b/package/win/package_win32.ps1 index a21ebf74e3..64e1708ce0 100644 --- a/package/win/package_win32.ps1 +++ b/package/win/package_win32.ps1 @@ -31,7 +31,7 @@ git branch | foreach { # Use absolute paths because apparently the zip calls below do if ($env:APPVEYOR) { - $output_dir = "${pwd}\..\..\Slic3r-${current_branch}.${current_date}.${env:APPVEYOR_BUILD_NUMBER}.$(git rev-parse --short HEAD)" + $output_dir = "${pwd}\..\..\Slic3r-${current_branch}.${current_date}.${env:APPVEYOR_BUILD_NUMBER}.$(git rev-parse --short HEAD).${env:ARCH}" } else { $output_dir = "${pwd}\..\..\Slic3r-${current_branch}.${current_date}.$(git rev-parse --short HEAD)" }