Skip to content

Commit 3861863

Browse files
committed
Run unzip quietly
1 parent 4b2348a commit 3861863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdlib_io_zip.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ subroutine unzip(filename, outputdir, stat, msg)
8888
end if
8989
end if
9090

91-
call run('unzip '//filename//' -d '//output_dir, run_stat)
91+
call run('unzip -q '//filename//' -d '//output_dir, run_stat)
9292
if (run_stat /= 0) then
9393
if (present(stat)) stat = run_stat
9494
if (present(msg)) msg = "Error unzipping '"//filename//"'."

0 commit comments

Comments
 (0)