Skip to content

Commit

Permalink
Remove extra quotes after agent moves to pwsh 7.3 (PowerShell#18577)
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisEz13 authored Nov 16, 2022
1 parent 4f19c05 commit 4ce439e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/packaging/packaging.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -3522,7 +3522,7 @@ function New-MsiArgsArray {

$buildArguments = @()
foreach ($key in $Argument.Keys) {
$buildArguments += "-d$key=`"$($Argument.$key)`""
$buildArguments += "-d$key=$($Argument.$key)"
}

return $buildArguments
Expand Down

0 comments on commit 4ce439e

Please sign in to comment.