Skip to content
Snippets Groups Projects
Commit 7901fdef authored by Julien (jvoisin) Voisin's avatar Julien (jvoisin) Voisin
Browse files

Fix the testsuite

parent 1b356b8c
No related branches found
No related tags found
No related merge requests found
......@@ -140,11 +140,11 @@ def main():
if unknown_member_policy == UnknownMemberPolicy.KEEP:
logging.warning('Keeping unknown member files may leak metadata in the resulting file!')
success = True
no_failure = True
for f in __get_files_recursively(args.files):
if clean_meta([f, args.lightweight, unknown_member_policy]) is False:
success = False
return success
no_failure = False
return 0 if no_failure is True else -1
if __name__ == '__main__':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment