Skip to content

Commit d8dcc77

Browse files
committed
Fix for resource packaging on Linux
1 parent 3ad318c commit d8dcc77

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Resources/Scripts/package_resources.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def generateBinaryDataArchive(output_dir, file_list):
337337
header.write("} // namespace BinaryData\n")
338338

339339

340-
resources = {
340+
resources = [
341341
project_root + "/Resources/Fonts/IconFont.ttf",
342342
project_root + "/Resources/Fonts/InterTabular.ttf",
343343
project_root + "/Resources/Fonts/InterBold.ttf",
@@ -350,7 +350,7 @@ def generateBinaryDataArchive(output_dir, file_list):
350350
project_root + "/Resources/Icons/plugdata_logo.png",
351351
"Documentation.bin",
352352
"Filesystem"
353-
}
353+
]
354354

355355
if platform.system().lower() == "linux" or "bsd" in platform.system().lower():
356356
with zipfile.ZipFile(output_dir + "/InterUnicode.ttf.zip", 'w', compression=zipfile.ZIP_DEFLATED, compresslevel=9) as zipf:

0 commit comments

Comments
 (0)