Skip to content

Commit

Permalink
fix(decompress): Fix dark parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
r15ch13 committed May 12, 2019
1 parent bed78ce commit 87a1e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/decompress.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
}
Expand Down

0 comments on commit 87a1e78

Please sign in to comment.