Not nearly as big as SpriteSomething

This commit is contained in:
Mike A. Trethewey
2020-02-27 01:56:22 -08:00
parent 089012b594
commit 1b889845c3

View File

@@ -121,7 +121,7 @@ def find_binary(listdir):
if os.path.splitext(filename)[1] != ".py": if os.path.splitext(filename)[1] != ".py":
st = os.stat(filename) st = os.stat(filename)
mode = st.st_mode mode = st.st_mode
big = st.st_size > (10 * 1024 * 1024) # 10MB big = st.st_size > (4.7 * 1024 * 1024) # 10MB
if (mode & executable) or big: if (mode & executable) or big:
if "GUI" in filename or "Gui" in filename or "DungeonRandomizer" in filename: if "GUI" in filename or "Gui" in filename or "DungeonRandomizer" in filename:
BUILD_FILENAMES.append(filename) BUILD_FILENAMES.append(filename)