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

Unified Diff: utils/pub/sdk/pub.bat

Issue 13236002: Work around issue 9499. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« sdk/bin/dartdoc.bat ('K') | « sdk/bin/dartdoc.bat ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/sdk/pub.bat
diff --git a/utils/pub/sdk/pub.bat b/utils/pub/sdk/pub.bat
index e03b4216c8e2dbd040e21df6619e45ae156b046e..29d169cc4972e1252777fdfd41d614ae7e2bf4b8 100644
--- a/utils/pub/sdk/pub.bat
+++ b/utils/pub/sdk/pub.bat
@@ -11,4 +11,5 @@ set SCRIPTPATH=%~dp0
:: Does the string have a trailing slash? If so, remove it.
if %SCRIPTPATH:~-1%==\ set SCRIPTPATH=%SCRIPTPATH:~0,-1%
-"%SCRIPTPATH%\dart.exe" --package-root="%SCRIPTPATH%\..\packages\" "%SCRIPTPATH%\..\util\pub\pub.dart" %*
+:: The trailing slash in --package-root is required because of issue 9499.
Bob Nystrom 2013/03/28 21:25:17 Ditto.
+"%SCRIPTPATH%\dart.exe" --package-root="%SCRIPTPATH%\..\packages/" "%SCRIPTPATH%\..\util\pub\pub.dart" %*
« sdk/bin/dartdoc.bat ('K') | « sdk/bin/dartdoc.bat ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698