Skip to content

Commit

Permalink
Fix args issue on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
prsabahrami committed Nov 27, 2024
1 parent 6f9cda6 commit e3e588e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/header.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,7 @@ $arguments += $args -join ' '
# Add the path to the archive
$arguments += $archivePath

# DEBUG
Write-Output $arguments

& $pixiPackPath @arguments
& $pixiPackPath $($arguments -join ' ')
if ($LASTEXITCODE -ne 0) {
Remove-Item -Path $TEMPDIR -Recurse -Force
exit $LASTEXITCODE
Expand Down

0 comments on commit e3e588e

Please sign in to comment.