From 87a1e784d7463fea36fa41fcb7cb5537cbcfdc52 Mon Sep 17 00:00:00 2001 From: Richard Kuhnt Date: Sun, 12 May 2019 14:05:39 +0200 Subject: [PATCH] fix(decompress): Fix dark parameter order close #3454 --- lib/decompress.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/decompress.ps1 b/lib/decompress.ps1 index 84600303a7..8e71c9f185 100644 --- a/lib/decompress.ps1 +++ b/lib/decompress.ps1 @@ -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)" }