diff options
author | Wes Haggard <Wes.Haggard@microsoft.com> | 2018-03-21 16:40:34 -0700 |
---|---|---|
committer | Wes Haggard <Wes.Haggard@microsoft.com> | 2018-03-23 08:22:16 -0700 |
commit | 46f003fe2276e319f86d06b934aab9d57461a9f6 (patch) | |
tree | 64028a2506c5857897f247fc1bbb25ec7c5d690a /build.cmd | |
parent | e431eb23fc21b773c17b96bb0f8189597d436b98 (diff) | |
download | coreclr-46f003fe2276e319f86d06b934aab9d57461a9f6.tar.gz coreclr-46f003fe2276e319f86d06b934aab9d57461a9f6.tar.bz2 coreclr-46f003fe2276e319f86d06b934aab9d57461a9f6.zip |
Fix RestoreSources for optdata packages
Pass unprocessed args to restore optdata step so it
can override the sources when doing restore
Handle prority as an unprocessed arg for the sync alias
Diffstat (limited to 'build.cmd')
-rw-r--r-- | build.cmd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -320,7 +320,7 @@ REM ============================================================================ if %__RestoreOptData% EQU 1 if %__BuildTypeRelease% EQU 1 ( echo %__MsgPrefix%Restoring the OptimizationData Package - @call %__ProjectDir%\run.cmd sync -optdata + @call %__ProjectDir%\run.cmd sync -optdata %__UnprocessedBuildArgs% if not !errorlevel! == 0 ( echo %__MsgPrefix%Error: Failed to restore the optimization data package. exit /b 1 |