Skip to content
Snippets Groups Projects
Commit e04e3db6 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

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

Change-Id: If641a2cf5a2a47bfa70e8232769ef916c64af35b
parent 6e7278c8
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment