Remove the dependency of using config.json in cwd #7330
|
@maririos @dagood ptal. |
| @@ -30,10 +30,10 @@ if NOT [%ERRORLEVEL%]==[0] ( | ||
| set _toolRuntime=%~dp0Tools | ||
| set _dotnet=%_toolRuntime%\dotnetcli\dotnet.exe | ||
| -echo Running: %_dotnet% %_toolRuntime%\run.exe %* | ||
| -call %_dotnet% %_toolRuntime%\run.exe %* | ||
| +echo Running: %_dotnet% %_toolRuntime%\run.exe %~dp0config.json %* |
dagood
Sep 23, 2016
Member
We should port this back to buildtools, good spot to put the same path in the echo.
11 of 12 checks passed
Linux ARM Emulator Cross Release Build
Build finished.
Details
CentOS7.1 x64 Debug Build and Test
Build finished.
Details
FreeBSD x64 Checked Build
Build finished.
Details
Linux ARM Emulator Cross Debug Build
Build finished.
Details
OSX x64 Checked Build and Test
Build finished.
Details
Ubuntu x64 Checked Build and Test
Build finished.
Details
Ubuntu x64 Formatting
Build finished.
Details
Windows_NT x64 Debug Build and Test
Build finished.
Details
Windows_NT x64 Formatting
Build finished.
Details
Windows_NT x64 Release Priority 1 Build and Test
Build finished.
Details
Windows_NT x86 legacy_backend Checked Build and Test
Build finished.
Details
Windows_NT x86 ryujit Checked Build and Test
Build finished.
Details
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the config.json file is looked for in the current working
directory. This change forces run.exe to use the relative path of
the file relative to the build script.