Skip to content

Commit

Permalink
Change: Build 64bit installer
Browse files Browse the repository at this point in the history
  • Loading branch information
jkarasti committed Sep 24, 2024
1 parent 7ce0da9 commit c191fba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion install/windows/build-app.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ python install\windows\build-wxs.py

REM build the msi package
cd build
wix build -ext WixToolset.UI.wixext .\Dangerzone.wxs -out Dangerzone.msi
wix build -arch x64 -ext WixToolset.UI.wixext .\Dangerzone.wxs -out Dangerzone.msi

REM validate Dangerzone.msi
wix msi validate Dangerzone.msi
Expand Down
4 changes: 2 additions & 2 deletions install/windows/build-wxs.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def main():
Compressed="yes",
Codepage="1252",
Version=dangerzone_version,
InstallerVersion="100",
InstallerVersion="200",
)

ET.SubElement(
Expand Down Expand Up @@ -216,7 +216,7 @@ def main():
programfilesfolder_el = ET.SubElement(
package_el,
"StandardDirectory",
Id="ProgramFilesFolder",
Id="ProgramFiles64Folder",
)

# Generate the directory layout for the installed product
Expand Down

0 comments on commit c191fba

Please sign in to comment.