From e04e3db69f67263558f52ee4350a39c8807f86b1 Mon Sep 17 00:00:00 2001
From: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com>
Date: Mon, 5 Jun 2023 10:30:28 -0400
Subject: [PATCH] build: windows: use string literal instead of bytes for exe
 path

Change-Id: If641a2cf5a2a47bfa70e8232769ef916c64af35b
---
 extras/scripts/build-windows.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extras/scripts/build-windows.py b/extras/scripts/build-windows.py
index f12ac2018..65ae28248 100644
--- a/extras/scripts/build-windows.py
+++ b/extras/scripts/build-windows.py
@@ -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)
-- 
GitLab