From b67935ef57998c87220362de8c2f66c2ce7eacf7 Mon Sep 17 00:00:00 2001 From: Gres Date: Mon, 13 Jul 2020 22:40:34 +0300 Subject: [PATCH] Add workaround for non ascii path to binary on Windows --- share/ci/windeploy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/ci/windeploy.py b/share/ci/windeploy.py index 9102a9a..f50d6aa 100644 --- a/share/ci/windeploy.py +++ b/share/ci/windeploy.py @@ -38,6 +38,8 @@ for f in glob(ssl_dir + '/bin/*.dll'): c.print('>> Copying {} to {}'.format(f, install_dir)) shutil.copy(f, install_dir) +open(os.path.join(install_dir, 'qt.conf'), 'a').close() + c.archive(c.get_folder_files(os.path.relpath(install_dir)), artifact_path) bin_path = install_dir + '\\' + bin_name + '.exe'