This commit is contained in:
Ganesh Viswanathan 2017-12-04 14:26:44 -06:00
commit 3a6c74afb7

View file

@ -55,7 +55,7 @@ proc execProc(cmd: string): string =
quit(1)
proc extractZip(zipfile: string) =
var cmd = "unzip $#"
var cmd = "unzip -o $#"
if defined(Windows):
cmd = "powershell -nologo -noprofile -command \"& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('$#', '.'); }\""