diff options
author | Aditya Mandaleeka <adityam@microsoft.com> | 2016-06-16 11:57:06 -0700 |
---|---|---|
committer | Aditya Mandaleeka <adityam@microsoft.com> | 2016-06-16 11:58:38 -0700 |
commit | bbf48b9f2481ef48146b5d5892e804396286bbd7 (patch) | |
tree | 5626b7d14de44077b8945dc488c451e3e2b309d3 /tests | |
parent | 0aed7c9a2c88a9332712905dbcd06c855cf7586d (diff) | |
download | coreclr-bbf48b9f2481ef48146b5d5892e804396286bbd7.tar.gz coreclr-bbf48b9f2481ef48146b5d5892e804396286bbd7.tar.bz2 coreclr-bbf48b9f2481ef48146b5d5892e804396286bbd7.zip |
Fix some typos in setup-runtime-dependencies.cmd
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/setup-runtime-dependencies.cmd | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/setup-runtime-dependencies.cmd b/tests/setup-runtime-dependencies.cmd index 182f0efad0..2cc2d773a2 100755 --- a/tests/setup-runtime-dependencies.cmd +++ b/tests/setup-runtime-dependencies.cmd @@ -46,7 +46,7 @@ set __DotNetCmd=%__DotNetToolDir%\dotnetcli\dotnet.exe set __PackageDir=%__ThisScriptPath%..\Packages set __TmpDir=%Temp%\coreclr_gcstress_%RANDOM% -REM Check if donet cli exists +REM Check if dotnet cli exists if not exist "%__DotNetToolDir%" ( echo Directory containing dotnet CLI does not exist: %__DotNetToolDir% goto Fail @@ -67,7 +67,7 @@ if exist "%__TmpDir%" ( mkdir %__TmpDir% REM Project.json path -set __JasonFilePath=%__TmpDir%\project.json +set __JsonFilePath=%__TmpDir%\project.json REM ========================================================================================= REM === @@ -81,14 +81,14 @@ echo { ^ "runtime.win7-%__Arch%.Microsoft.NETCore.CoreDisTools": "1.0.1-prerelease-*" ^ }, ^ "frameworks": { "dnxcore50": { } } ^ - } > "%__JasonFilePath%" + } > "%__JsonFilePath%" -echo Jason file: %__JasonFilePath% -type "%__JasonFilePath%" +echo JSON file: %__JsonFilePath% +type "%__JsonFilePath%" REM Download the package echo Downloading CoreDisTools package -set DOTNETCMD="%__DotNetCmd%" restore "%__JasonFilePath%" --source https://dotnet.myget.org/F/dotnet-core/ --packages "%__PackageDir%" +set DOTNETCMD="%__DotNetCmd%" restore "%__JsonFilePath%" --source https://dotnet.myget.org/F/dotnet-core/ --packages "%__PackageDir%" echo %DOTNETCMD% call %DOTNETCMD% if errorlevel 1 goto Fail @@ -131,7 +131,7 @@ REM ============================================================================ :Usage echo. -echo Download coredistool for GC stress testing +echo Download coredistools for GC stress testing echo. echo Usage: echo %__ThisScriptShort% /arch ^<TargetArch^> /outputdir ^<coredistools_lib_install_path^> |