Skip to content

Commit

Permalink
Remove quiet from iso creation, size seems wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
bcl committed Apr 29, 2024
1 parent f97a16d commit 86c7d97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testpyisomd5sum.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ def pass_fail(rc, pass_value, pass_all):
# Python 2
catch_error = OSError
try:
subprocess.check_call(["mkisofs", "-quiet", "-o", "testiso.iso", "."])
subprocess.check_call(["mkisofs", "-o", "testiso.iso", "."])
except catch_error:
subprocess.check_call(["genisoimage", "-quiet", "-o", "testiso.iso", "."])
subprocess.check_call(["genisoimage", "-o", "testiso.iso", "."])

# implant it
(rstr, pass_all) = pass_fail(pyisomd5sum.implantisomd5sum("testiso.iso", 1, 0), 0, True)
Expand Down

0 comments on commit 86c7d97

Please sign in to comment.