diff --git a/src/info_zip.jl b/src/info_zip.jl index 18f7fda..72c7bfb 100644 --- a/src/info_zip.jl +++ b/src/info_zip.jl @@ -146,7 +146,7 @@ typealias FileOrBytes Union{AbstractString,Vector{UInt8}} function unzip(archive::FileOrBytes, outputpath::AbstractString=pwd()) open_zip(archive) do z - run(Cmd(`unzip -q $(z.filename)`, dir = outputpath)) + run(Cmd(`unzip -qo $(z.filename)`, dir = outputpath)) end end