Skip to content

Commit 667b514

Browse files
authored
Pass InnerBuildArgs to inner RepoTasks build in SourceBuild (#61020)
1 parent 042b384 commit 667b514

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eng/DotNetBuild.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@
4646
attempts as the install script walks through potential locations for a runtime.
4747
The overall build script will return a proper exit code, but we don't want to pick up the printed error messages. -->
4848
<Exec
49-
Command="./eng/build.sh --only-build-repo-tasks -bl $(_AdditionalRepoTaskBuildArgs)"
49+
Command="./eng/build.sh --only-build-repo-tasks -bl $(_AdditionalRepoTaskBuildArgs) $(InnerBuildArgs)"
5050
IgnoreStandardErrorWarningFormat="true"
5151
WorkingDirectory="$(InnerSourceBuildRepoRoot)"
5252
EnvironmentVariables="@(InnerBuildEnv)"
5353
Condition="'$(OS)' != 'Windows_NT'" />
5454

5555
<Exec
56-
Command=".\eng\build.cmd -OnlyBuildRepoTasks -bl $(_AdditionalRepoTaskBuildArgs)"
56+
Command=".\eng\build.cmd -OnlyBuildRepoTasks -bl $(_AdditionalRepoTaskBuildArgs) $(InnerBuildArgs)"
5757
IgnoreStandardErrorWarningFormat="true"
5858
WorkingDirectory="$(InnerSourceBuildRepoRoot)"
5959
EnvironmentVariables="@(InnerBuildEnv)"

0 commit comments

Comments
 (0)