Skip to content

Commit 6adf81a

Browse files
committed
Fixed path to webengine resources
1 parent 7d73058 commit 6adf81a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

freeze.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,9 @@ def find_files(directory, patterns):
225225

226226
# Add QtWebEngineProcess Resources & Local
227227
qt5_path = "/usr/share/qt5/"
228-
for filename in find_files(os.path.join(PATH, "resources"), ["*"]):
228+
for filename in find_files(os.path.join(qt5_path, "resources"), ["*"]):
229229
external_so_files.append((filename, os.path.relpath(filename, start=qt5_path)))
230-
for filename in find_files(os.path.join(PATH, "translations", "qtwebengine_locales"), ["*"]):
230+
for filename in find_files(os.path.join(qt5_path, "translations", "qtwebengine_locales"), ["*"]):
231231
external_so_files.append((filename, os.path.relpath(filename, start=qt5_path)))
232232

233233
# Append Linux ICON file

0 commit comments

Comments
 (0)