fix(decompress): Fix dark parameter order

close #3454
This commit is contained in:
Richard Kuhnt
2019-05-12 14:05:39 +02:00
parent bed78ceffb
commit 87a1e784d7
+1 -1
View File
@@ -215,7 +215,7 @@ function Expand-DarkArchive {
$Removal
)
$LogLocation = "$(Split-Path $Path)\dark.log"
& (Get-HelperPath -Helper Dark) -nologo -x "$DestinationPath" "$Path" | Out-File $LogLocation
& (Get-HelperPath -Helper Dark) -nologo -x "$Path" "$DestinationPath" | Out-File $LogLocation
if ($LASTEXITCODE -ne 0) {
abort "Failed to extract files from $Path.`nLog file:`n $(friendly_path $LogLocation)"
}