From 54a96cc15251fd1735556c4e66d7feebaaa558f3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 5 Dec 2023 14:31:40 +0530 Subject: [PATCH] Now we have a .bin file in resources as well as pak files --- bypy/linux/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bypy/linux/__main__.py b/bypy/linux/__main__.py index 9529681db0..ebdfe96644 100644 --- a/bypy/linux/__main__.py +++ b/bypy/linux/__main__.py @@ -163,7 +163,7 @@ def copy_python(env, ext_dir): elif os.path.isfile(c): shutil.copy2(c, j(dest, x)) shutil.copytree(j(env.src_root, 'resources'), j(env.base, 'resources')) - for pak in glob.glob(j(QT_PREFIX, 'resources', '*.pak')): + for pak in glob.glob(j(QT_PREFIX, 'resources', '*')): shutil.copy2(pak, j(env.base, 'resources')) os.mkdir(j(env.base, 'translations')) shutil.copytree(j(QT_PREFIX, 'translations', 'qtwebengine_locales'), j(env.base, 'translations', 'qtwebengine_locales'))