The path to wix.exe has changed. Sigh.

This commit is contained in:
Kovid Goyal 2025-12-09 23:08:49 +05:30
parent b701d8e843
commit 2ea8a28072
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# Requires installation of Visual Studio 2022 Community Edition, WiX Toolset, Ruby (without devkit), NodeJS, Python and Perl
# Requires installation of Visual Studio 2022 Community Edition, Ruby (without devkit), NodeJS, Python and Perl
#
# Visual Studio 2022 Components:
# .NET SDK
@ -24,6 +24,9 @@
# https://download.qt.io/development_releases/prebuilt/llvmpipe/windows/
# to C:/mesa/64
# Install MESON and NINJA using the MSI from the meson github releases page
# Install wix by running:
# dotnet tool install --global wix
# in a visual studio command prompt
vm_name 'windows-calibre'
root 'C:/r'

View File

@ -9,7 +9,7 @@ from itertools import count
from bypy.constants import is64bit
from bypy.utils import run
WIX = os.path.expanduser('~/.dotnet/tools/wix.exe')
WIX = os.path.join(os.environ['USERPROFILE'], r'.dotnet\tools\wix.exe')
if is64bit:
UPGRADE_CODE = '5DD881FF-756B-4097-9D82-8C0F11D521EA'
else: