Index: toolkit/mozapps/installer/find-dupes.py |
=================================================================== |
--- a/toolkit/mozapps/installer/find-dupes.py |
+++ b/toolkit/mozapps/installer/find-dupes.py |
@@ -112,9 +112,11 @@ |
pp.do_filter('substitution') |
pp.do_include(filename) |
allowed_dupes.extend([line.partition('#')[0].rstrip() |
for line in pp.out.getvalue().splitlines()]) |
find_dupes(args.directory, bail=not args.warning, allowed_dupes=allowed_dupes) |
if __name__ == "__main__": |
- main() |
+ # We allow dupes, so we skip this check |
+ # See https://issues.adblockplus.org/ticket/7238 |
+ print("Skipping find-dupes.py") |