Skip to content

Commit 6141e46

Browse files
committed
fix(decompress): Change dark.exe parameter order
ScoopInstaller/Extras#2143 ScoopInstaller/Main#56
1 parent 731d878 commit 6141e46

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/decompress.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ function Expand-DarkArchive {
215215
$Removal
216216
)
217217
$LogLocation = "$(Split-Path $Path)\dark.log"
218-
& (Get-HelperPath -Helper Dark) -nologo -x "$Path" "$DestinationPath" | Out-File $LogLocation
218+
& (Get-HelperPath -Helper Dark) -nologo -x "$DestinationPath" "$Path" | Out-File $LogLocation
219219
if ($LASTEXITCODE -ne 0) {
220220
abort "Failed to extract files from $Path.`nLog file:`n $(friendly_path $LogLocation)"
221221
}

0 commit comments

Comments
 (0)