Skip to content
Snippets Groups Projects
Commit edb8a248 authored by Markus Reiter's avatar Markus Reiter
Browse files

Remove `-quiet` flag when verbose.

parent 65dc996a
No related branches found
No related tags found
No related merge requests found
......@@ -144,10 +144,12 @@ module UnpackStrategy
else
cdr_path = mount_dir/path.basename.sub_ext(".cdr")
quiet_flag = "-quiet" unless verbose
system_command!(
"hdiutil",
args: [
"convert", "-quiet", "-format", "UDTO", "-o", cdr_path, path
"convert", *quiet_flag, "-format", "UDTO", "-o", cdr_path, path
],
verbose: verbose,
)
......
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