From: mikedn Date: Sat, 27 May 2017 23:09:11 +0000 (+0300) Subject: Fix tool initialization detection (#11912) X-Git-Tag: accepted/tizen/base/20180629.140029~1083^2~613 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a90081b1d83f0447cace40b18ee908117d12b645;p=platform%2Fupstream%2Fcoreclr.git Fix tool initialization detection (#11912) init-tools.cmd attempts to create a file in a directory that doesn't exist. File creation fails and next time the script is run initialization will be performed again. That wastes a lot of time. --- diff --git a/init-tools.cmd b/init-tools.cmd index b69239b..ef675dd 100644 --- a/init-tools.cmd +++ b/init-tools.cmd @@ -10,7 +10,8 @@ if [%BUILDTOOLS_SOURCE%]==[] set BUILDTOOLS_SOURCE=https://dotnet.myget.org/F/do set /P BUILDTOOLS_VERSION=< "%~dp0BuildToolsVersion.txt" set BUILD_TOOLS_PATH=%PACKAGES_DIR%Microsoft.DotNet.BuildTools\%BUILDTOOLS_VERSION%\lib\ set INIT_TOOLS_RESTORE_PROJECT=%~dp0init-tools.msbuild -set BUILD_TOOLS_SEMAPHORE=%TOOLRUNTIME_DIR%\%BUILDTOOLS_VERSION%\init-tools.completed +set BUILD_TOOLS_SEMAPHORE_DIR=%TOOLRUNTIME_DIR%\%BUILDTOOLS_VERSION% +set BUILD_TOOLS_SEMAPHORE=%BUILD_TOOLS_SEMAPHORE_DIR%\init-tools.completed :: if force option is specified then clean the tool runtime and build tools package directory to force it to get recreated if [%1]==[force] ( @@ -73,5 +74,8 @@ if not [%INIT_TOOLS_ERRORLEVEL%]==[0] ( :: Create sempahore file echo Done initializing tools. +if NOT exist "%BUILD_TOOLS_SEMAPHORE_DIR%" ( + mkdir "%BUILD_TOOLS_SEMAPHORE_DIR%" +) echo Init-Tools.cmd completed for BuildTools Version: %BUILDTOOLS_VERSION% > "%BUILD_TOOLS_SEMAPHORE%" -exit /b 0 \ No newline at end of file +exit /b 0