diff --git a/.travis.yml b/.travis.yml index 9677c05a..0a6bdacf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,7 +65,7 @@ before_deploy: zip choco.zip "./deployment/windows/choco/bottom.nuspec" "./deployment/windows/choco/tools/"; cargo install cargo-wix; cargo wix init; - cargo wix -n "bottom_x86_64_installer.msi"; + cargo wix; cp "./target/wix/bottom_x86_64_installer.msi" ./bottom_x86_64_installer.msi; python "./deployment/packager.py" "./bottom_x86_64_installer.msi" $TRAVIS_TAG "./deployment/windows/winget/winget.yaml.template" "$TRAVIS_TAG.yaml" "SHA256"; else diff --git a/Cargo.toml b/Cargo.toml index e72f33e9..0ed07058 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,3 +69,6 @@ By default, bottom will look for a config file in ~/.config/bottom/bottom.toml. If one is not specified it will fall back to defaults. If a config file does not exist at the specified or default location, a blank one will be created for the user. """ + +[package.metadata.wix] +output = "bottom_x86_64_installer.msi" \ No newline at end of file