1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-04-21 21:52:03 +02:00

build: windows: use string literal instead of bytes for exe path

Change-Id: If641a2cf5a2a47bfa70e8232769ef916c64af35b
This commit is contained in:
Andreas Traczyk 2023-06-05 10:30:28 -04:00
parent 6e7278c87a
commit e04e3db69f

View file

@ -347,7 +347,7 @@ def deploy_runtimes(qt_dir):
"later.")
sys.exit(1)
os.environ["VCINSTALLDIR"] = os.path.join(installation_dir, "VC")
executable = os.path.join(runtime_dir.encode(), b"Jami.exe")
executable = os.path.join(runtime_dir, "Jami.exe")
execute_cmd([win_deploy_qt, "--verbose", "1", "--no-compiler-runtime",
"--qmldir", qml_src_dir, "--release", executable],
False, cmd_dir=runtime_dir)