Bug(Bundler): fix target arch in wix (#426)

* fix target arch in wix

* update github action to .amd64.msi
This commit is contained in:
Tensor-Programming 2020-02-12 16:51:17 -05:00 committed by GitHub
parent bb3a2f57f4
commit 76c8376e74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ jobs:
- platform: windows-latest
CARGO_HOME: ~/.cargo
releaseFolder: target/release
ext: .x86.msi
ext: .amd64.msi
steps:
- uses: actions/checkout@v2

View File

@ -170,8 +170,8 @@ fn download_and_verify(url: &str, hash: &str) -> crate::Result<Vec<u8>> {
fn app_installer_dir(settings: &Settings) -> crate::Result<PathBuf> {
let arch = match settings.binary_arch() {
"x86_64" => "x86",
"x64" => "x64",
"x86" => "i386",
"x86_64" => "amd64",
target => {
return Err(crate::Error::from(format!(
"Unsupported architecture: {}",