We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3fdc2b commit d560d52Copy full SHA for d560d52
eng/build.sh
@@ -392,6 +392,11 @@ InitializeToolset
392
393
restore=$_tmp_restore=
394
395
+if [ ${#commandline_args[@]} -gt 0 ]; then
396
+ # Append array1 to array2
397
+ toolset_build_args+=("${commandline_args[@]}")
398
+fi
399
+
400
if [ "$build_repo_tasks" = true ]; then
401
MSBuild $_InitializeToolset \
402
-p:RepoRoot="$repo_root" \
@@ -400,8 +405,7 @@ if [ "$build_repo_tasks" = true ]; then
405
-p:Restore=$run_restore \
406
-p:Build=true \
407
-clp:NoSummary \
403
- ${toolset_build_args[@]+"${toolset_build_args[@]}"} \
404
- ${commandline_args[@]+"${commandline_args[@]}"}
408
+ ${toolset_build_args[@]+"${toolset_build_args[@]}"}
409
fi
410
411
if [ "$only_build_repo_tasks" != true ]; then
0 commit comments