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:
parent
6e7278c87a
commit
e04e3db69f
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue