mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-12-27 23:45:15 +00:00
The path to wix.exe has changed. Sigh.
This commit is contained in:
parent
b701d8e843
commit
2ea8a28072
@ -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'
|
||||
|
||||
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user