Skip to content

Commit 3319018

Browse files
authored
Fix quoting in build.sh (#19570)
This allows it to accept arguments that contain spaces, such as propreties like "/p:OfficialBuilder=Foo Bar". Fixes the regression introduced in #19211
1 parent 40e815c commit 3319018

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/eng/build.sh" --restore --build $@
16+
"$scriptroot/eng/build.sh" --restore --build "$@"

0 commit comments

Comments
 (0)