Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 @echo off | |
|
Siggi Cherem (dart-lang)
2012/02/07 20:41:55
+ license comment
+ comment explaining this is a w
| |
| 2 REM Call frog using python. | |
| 3 | |
| 4 set SCRIPTPATH=%~dp0 | |
| 5 | |
| 6 REM Does the string have a trailing slash? If so, remove it. | |
| 7 if %SCRIPTPATH:~-1%==\ set SCRIPTPATH=%SCRIPTPATH:~0,-1% | |
| 8 | |
| 9 REM Canonicalize the direction of the slashes. | |
| 10 set script=%* | |
| 11 set script=%script:\=/% | |
| 12 | |
| 13 python %SCRIPTPATH%\frog %script% | |
| OLD | NEW |