diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-18 22:25:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-18 22:25:26 -0300 |
commit | a0e7d68bd80888fcb5cacec31740ceae56f419d3 (patch) | |
tree | 2008493928d6b85b4e5dcd80412fcb13f7b41f4d /game | |
parent | 53587622def628c6658171d665ba3c25aa92cde5 (diff) | |
download | client-a0e7d68bd80888fcb5cacec31740ceae56f419d3.tar.gz client-a0e7d68bd80888fcb5cacec31740ceae56f419d3.tar.bz2 client-a0e7d68bd80888fcb5cacec31740ceae56f419d3.tar.xz client-a0e7d68bd80888fcb5cacec31740ceae56f419d3.zip |
Make sure the build won't have them as well (they might carry OS-specific code)
Diffstat (limited to 'game')
-rw-r--r-- | game/options.rpy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/game/options.rpy b/game/options.rpy index 97f9956..916980f 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -194,6 +194,8 @@ init python: build.classify('**/.**', None) build.classify('**/#**', None) build.classify('**/thumbs.db', None) + build.classify('**.pyc', None) + build.classify('**.pyo', None) ## Remove development files build.classify('**.pem', None) |