Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit 331b58c

Browse files
author
jbeisner
committed
Should use a trailing space instead of a leading space; MSBuild thinks the '$ExtraParametersNoTargets' variable a switch instead of a string.
1 parent ab97a07 commit 331b58c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ foreach ($param in $ExtraParameters.split())
3434
{
3535
if((-not $param.StartsWith("/t")) -and (-not $param.StartsWith("/T")))
3636
{
37-
$ExtraParametersNoTargets += " {0}" -f $param
37+
$ExtraParametersNoTargets += "{0} " -f $param
3838
}
3939
}
4040

0 commit comments

Comments
 (0)