Meh, capitals

This commit is contained in:
Mike A. Trethewey
2020-02-26 02:53:21 -08:00
parent ab33c5c95f
commit 9c59dda0e0

View File

@@ -122,7 +122,7 @@ def find_binary(listdir):
mode = st.st_mode mode = st.st_mode
big = st.st_size > (10 * 1024 * 1024) # 10MB big = st.st_size > (10 * 1024 * 1024) # 10MB
if (mode & executable) or big: if (mode & executable) or big:
if "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)
return BUILD_FILENAMES return BUILD_FILENAMES