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

Unified Diff: sdk/bin/dartanalyzer.bat

Issue 13925018: Fixes to the sdk dartanalyzer.bat script. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/bin/dartanalyzer.bat
===================================================================
--- sdk/bin/dartanalyzer.bat (revision 21520)
+++ sdk/bin/dartanalyzer.bat (working copy)
@@ -39,9 +39,9 @@
endlocal & set "DART_SDK=%DART_SDK%" & set "DART_SDK_HOME=%DART_SDK_HOME%"
if exist "%DART_SDK_HOME%\util\dartanalyzer\dartanalyzer.jar" (
- set DART_ANALYZER_LIBS=%DART_SDK_HOME%\util\dartanalyzer
+ set DART_ANALYZER_LIBS="%DART_SDK_HOME%\util\dartanalyzer"
) else if exist "%DART_ANALYZER_HOME%\util\dartanalyzer\dartanalyzer.jar" (
- set DART_ANALYZER_LIBS=%DART_ANALYZER_HOME%\util\dartanalyzer
+ set DART_ANALYZER_LIBS="%DART_ANALYZER_HOME%\util\dartanalyzer"
) else (
echo Configuration problem. Couldn't find dartanalyzer.jar.
exit /b 1
@@ -54,5 +54,4 @@
)
endlocal & set "EXTRA_JVMARGS=%EXTRA_JVMARGS%"
-java %EXTRA_JVMARGS% %DART_JVMARGS% -ea -jar \
- "%DART_ANALYZER_LIBS%\dartanalyzer.jar" %DART_SDK% %*
+java %EXTRA_JVMARGS% %DART_JVMARGS% -ea -jar "%DART_ANALYZER_LIBS%\dartanalyzer.jar" %DART_SDK% %*
« 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