Index: packagerChrome.py |
=================================================================== |
--- a/packagerChrome.py |
+++ b/packagerChrome.py |
@@ -18,14 +18,7 @@ |
defaultLocale = 'en_US' |
def getIgnoredFiles(params): |
- result = set(('store.description',)) |
- |
- # Hack: ignore all lib subdirectories |
- libDir = os.path.join(params['baseDir'], 'lib') |
- for file in os.listdir(libDir): |
- if os.path.isdir(os.path.join(libDir, file)): |
- result.add(file) |
- return result |
+ return ['store.description'] |
Wladimir Palant
2016/01/14 19:28:04
This should still be a set - even with one entry,
Sebastian Noack
2016/01/14 23:28:41
Not that it matters with a single item, but done.
|
def getPackageFiles(params): |
result = set(('_locales', 'icons', 'jquery-ui', 'lib', 'skin', 'ui', 'ext')) |