OLD | NEW |
1 @echo off | 1 @echo off |
2 REM Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 2 REM Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
3 REM for details. All rights reserved. Use of this source code is governed by a | 3 REM for details. All rights reserved. Use of this source code is governed by a |
4 REM BSD-style license that can be found in the LICENSE file. | 4 REM BSD-style license that can be found in the LICENSE file. |
5 | 5 |
6 rem Run pub.dart on the Dart VM. This script is only used when running pub from | 6 rem Run pub.dart on the Dart VM. This script is only used when running pub from |
7 rem within the Dart source repo. The shipped SDK instead uses "pub_sdk.bat", | 7 rem within the Dart source repo. The shipped SDK instead uses "pub_sdk.bat", |
8 rem which is renamed to "pub.bat" when the SDK is built. | 8 rem which is renamed to "pub.bat" when the SDK is built. |
9 | 9 |
10 setlocal | 10 setlocal |
(...skipping 28 matching lines...) Expand all Loading... |
39 | 39 |
40 endlocal | 40 endlocal |
41 | 41 |
42 exit /b %errorlevel% | 42 exit /b %errorlevel% |
43 | 43 |
44 :follow_links | 44 :follow_links |
45 setlocal | 45 setlocal |
46 for %%i in (%1) do set result=%%~fi | 46 for %%i in (%1) do set result=%%~fi |
47 set current= | 47 set current= |
48 for /f "usebackq tokens=2 delims=[]" %%i in (`dir /a:l "%~dp1" 2^>nul ^ | 48 for /f "usebackq tokens=2 delims=[]" %%i in (`dir /a:l "%~dp1" 2^>nul ^ |
49 ^| %SystemRoot%\System32\find.exe "
> %~n1 ["`) do ( | 49 ^| %SystemRoot%\System32\find.exe "
> %~n1 [" 2^>nul`) do ( |
50 set current=%%i | 50 set current=%%i |
51 ) | 51 ) |
52 if not "%current%"=="" call :follow_links "%current%", result | 52 if not "%current%"=="" call :follow_links "%current%", result |
53 endlocal & set %~2=%result% | 53 endlocal & set %~2=%result% |
54 goto :eof | 54 goto :eof |
55 | 55 |
56 :end | 56 :end |
OLD | NEW |