Fix regression in packaging: Ensure $ARCH value is used in output name for Slic3r.

This commit is contained in:
Joseph Lenox 2017-05-29 19:13:20 -05:00
parent c22d20b9bb
commit ae42e924ab

View File

@ -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)"
}