From 2ac6417c505d0a1dd14f3625765e10fae3fa987f Mon Sep 17 00:00:00 2001 From: Alberto Sottile Date: Fri, 15 Feb 2019 19:46:37 +0100 Subject: [PATCH] buildpy2app: include lua subfolder in the app bundle --- buildPy2app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/buildPy2app.py b/buildPy2app.py index 96f5db0..4e921c9 100755 --- a/buildPy2app.py +++ b/buildPy2app.py @@ -12,6 +12,7 @@ import syncplay APP = ['syncplayClient.py'] DATA_FILES = [ ('resources', glob('resources/*.png') + glob('resources/*.rtf') + glob('resources/*.lua')), + ('resources/lua/intf', glob('resources/lua/intf/*.lua')) ] OPTIONS = { 'iconfile': 'resources/icon.icns',