Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(420)

Side by Side Diff: sdk/bin/pub.bat

Issue 16990005: Make pub.bat work from within the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 @echo off 1 @echo off
2 :: Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 REM Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 :: 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 :: 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 :: Run pub.dart on the Dart VM. This script assumes the Dart SDK's directory 6 setlocal
7 :: structure. 7 rem Handle the case where dart-sdk/bin has been symlinked to.
8 set DIR_NAME_WITH_SLASH=%~dp0
9 set DIR_NAME=%DIR_NAME_WITH_SLASH:~0,-1%%
10 call :follow_links "%DIR_NAME%", RETURNED_BIN_DIR
11 rem Get rid of surrounding quotes.
12 for %%i in ("%RETURNED_BIN_DIR%") do set BIN_DIR=%%~fi
8 13
9 set SCRIPTPATH=%~dp0 14 rem Get absolute full name for SDK_DIR.
15 for %%i in ("%BIN_DIR%\..\") do set SDK_DIR=%%~fi
10 16
11 :: Does the string have a trailing slash? If so, remove it. 17 rem Remove trailing backslash if there is one
12 if %SCRIPTPATH:~-1%==\ set SCRIPTPATH=%SCRIPTPATH:~0,-1% 18 IF %SDK_DIR:~-1%==\ set SDK_DIR=%SDK_DIR:~0,-1%
13 19
14 :: The trailing forward slash in --package-root is required because of issue 20 set PUB=%SDK_DIR%\lib\_internal\pub\bin\pub.dart
15 :: 9499. 21 set BUILD_DIR=%SDK_DIR%\..\build\ReleaseIA32
16 "%SCRIPTPATH%\dart.exe" "%SCRIPTPATH%\..\bin\snapshots\pub.dart.snapshot" %* 22 set PACKAGES_DIR=%BUILD_DIR%\packages\
23 set DART=%BIN_DIR%\dart
24 set DART_IN_BUILT_SDK=%BUILD_DIR%\dart-sdk\bin\dart
25 set SNAPSHOT=%BIN_DIR%\snapshots\pub.dart.snapshot
26
27 if exist "%SNAPSHOT%" (
28 "%DART%" --checked "%SNAPSHOT%" %*
29 ) else (
30 "%DART_IN_BUILT_SDK%" --checked --package-root=%PACKAGES_DIR% "%PUB%" %*
31 )
32
33 endlocal
34
35 exit /b %errorlevel%
36
37 :follow_links
38 setlocal
39 for %%i in (%1) do set result=%%~fi
40 set current=
41 for /f "tokens=2 delims=[]" %%i in ('dir /a:l ^"%~dp1^" 2^>nul ^
42 ^| find "> %~n1 ["') do (
43 set current=%%i
44 )
45 if not "%current%"=="" call :follow_links "%current%", result
46 endlocal & set %~2=%result%
47 goto :eof
48
49 :end
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698