Fix arguments to dart2js in windows bat file

Wrongly assigned the library path to vm options
Review URL: https://codereview.chromium.org//13812019

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@21248 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ricow@google.com 2013-04-11 06:16:45 +00:00
parent 00da866b33
commit 75e49ea691

View file

@ -27,7 +27,7 @@ if _%DART2JS_DEVELOPER_MODE%_ == _1_ (
if exist "%SNAPSHOT%" (
echo Using snapshot "%SNAPSHOT%" >&2
set EXTRA_VM_OPTIONS=%EXTRA_VM_OPTIONS% --library-root=%SDK_DIR%
set EXTRA_OPTIONS=%EXTRA_OPTIONS% --library-root=%SDK_DIR%
)
rem See comments regarding options below in dart2js shell script.