File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,11 @@ Copy-Item "build\helix\InstallTestAppDependencies.ps1" "$payloadDir"
5454Copy-Item " build\Helix\EnsureMachineState.ps1" " $payloadDir "
5555
5656# Copy the APPX package from the 'drop' artifact dir
57- Copy-Item " $repoDirectory \Artifacts\$ArtifactName \appx\CascadiaPackage_0.0.1.0_$Platform .msix" $payloadDir
57+ Copy-Item " $repoDirectory \Artifacts\$ArtifactName \appx\CascadiaPackage_0.0.1.0_$Platform .msix" $payloadDir \CascadiaPackage.zip
58+
59+ # Rename it to extension of ZIP because Expand-Archive is real sassy on the build machines
60+ # and refuses to unzip it because of its file extension while on a desktop, it just
61+ # does the job without complaining.
5862
5963# Extract the APPX package
60- Expand-Archive - LiteralPath $payloadDir \CascadiaPackage_0. 0.1 . 0_ $Platform .msix - DestinationPath $payloadDir \appx
64+ Expand-Archive - LiteralPath $payloadDir \CascadiaPackage.zip - DestinationPath $payloadDir \appx
You can’t perform that action at this time.
0 commit comments