diff options
author | Elinor Fung <47805090+elinor-fung@users.noreply.github.com> | 2019-05-23 16:42:08 -0700 |
---|---|---|
committer | Aaron Robinson <arobins@microsoft.com> | 2019-05-23 16:42:08 -0700 |
commit | 061fd2b8cdde0c59d28edddf4594fb1123dcea93 (patch) | |
tree | b0e5ab7349ca20710ec3dff087525475e9dc3941 /build.cmd | |
parent | abdee1f2fa9531c78eeadef6d0bb8fb1f823d011 (diff) | |
download | coreclr-061fd2b8cdde0c59d28edddf4594fb1123dcea93.tar.gz coreclr-061fd2b8cdde0c59d28edddf4594fb1123dcea93.tar.bz2 coreclr-061fd2b8cdde0c59d28edddf4594fb1123dcea93.zip |
Fix restoring internal tools (#24750)
Diffstat (limited to 'build.cmd')
-rw-r--r-- | build.cmd | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -394,10 +394,10 @@ if %__RestoreOptData% EQU 1 ( REM Parse the optdata package versions out of msbuild so that we can pass them on to CMake set OptDataProjectFilePath=%__ProjectDir%\src\.nuget\optdata\optdata.csproj -for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "%OptDataProjectFilePath%" /t:DumpPgoDataPackageVersion /p:ArcadeBuild^=true /nologo') do ( +for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "%OptDataProjectFilePath%" /t:DumpPgoDataPackageVersion /nologo') do ( set __PgoOptDataVersion=%%s ) -for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "%OptDataProjectFilePath%" /t:DumpIbcDataPackageVersion /p:ArcadeBuild^=true /nologo') do ( +for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "%OptDataProjectFilePath%" /t:DumpIbcDataPackageVersion /nologo') do ( set __IbcOptDataVersion=%%s ) @@ -646,7 +646,7 @@ if %__BuildCoreLib% EQU 1 ( if %__IbcOptimize% EQU 1 ( echo %__MsgPrefix%Commencing IBCMerge of System.Private.CoreLib for %__BuildOS%.%__BuildArch%.%__BuildType% set IbcMergeProjectFilePath=%__ProjectDir%\src\.nuget\optdata\ibcmerge.csproj - for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "!IbcMergeProjectFilePath!" /t:DumpIbcMergePackageVersion /p:ArcadeBuild^=true /nologo') do @( + for /f "tokens=*" %%s in ('call "%__ProjectDir%\dotnet.cmd" msbuild "!IbcMergeProjectFilePath!" /t:DumpIbcMergePackageVersion /nologo') do @( set __IbcMergeVersion=%%s ) |