Skip to content
Snippets Groups Projects
Commit 661adfc0 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Use --walk over (potentially dangerous) --scan argument of zipdetails(1)....

Use --walk over (potentially dangerous) --scan argument of zipdetails(1). (Closes: #406)
parent 2db5bd98
No related branches found
No related tags found
No related merge requests found
Pipeline #858368 failed
......@@ -157,7 +157,9 @@ def zipinfo_differences(file, other):
class Zipdetails(Command):
@tool_required("zipdetails")
def cmdline(self):
return ["zipdetails", "--redact", "--scan", "--utc", self.path]
# See <https://salsa.debian.org/reproducible-builds/diffoscope/-/issues/406>
# for discussion of zipdetails command line arguments.
return ["zipdetails", "--redact", "--walk", "--utc", self.path]
class ZipDirectory(Directory, ArchiveMember):
......
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