Skip to content

Commit 2e4770f

Browse files
authored
Fix printing subset help through msbuild (#117926)
We need to quote the arguments separately otherwise msbuild just gets a single arg. Fixes #117920
1 parent 2f5792a commit 2e4770f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ initDistroRid()
150150

151151
showSubsetHelp()
152152
{
153-
"$scriptroot/common/build.sh" "-restore" "-build" "/p:Subset=help" "/clp:nosummary /tl:false"
153+
"$scriptroot/common/build.sh" "-restore" "-build" "/p:Subset=help" "/clp:nosummary" "/tl:false"
154154
}
155155

156156
arguments=()

0 commit comments

Comments
 (0)