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

Side by Side Diff: sdk/bin/dartanalyzer

Issue 12618010: Rename the name of the new analyzer jar file from new_analyzer.jar to (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/bin/analyzer.bat ('k') | sdk/bin/dartanalyzer.bat » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2013, 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 # 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 # BSD-style license that can be found in the LICENSE file.
5 5
6 # This file is used to execute the analyzer by running the jar file. 6 # This file is used to execute the analyzer by running the jar file.
7 # It is a simple wrapper enabling us to have simpler command lines in 7 # It is a simple wrapper enabling us to have simpler command lines in
8 # the testing infrastructure. 8 # the testing infrastructure.
9 set -e 9 set -e
10 10
(...skipping 13 matching lines...) Expand all
24 24
25 SDK_DIR="$(cd "${CUR_DIR}/.." ; pwd -P)" 25 SDK_DIR="$(cd "${CUR_DIR}/.." ; pwd -P)"
26 26
27 if [ -z "$DART_CONFIGURATION" ]; 27 if [ -z "$DART_CONFIGURATION" ];
28 then 28 then
29 DART_CONFIGURATION="ReleaseIA32" 29 DART_CONFIGURATION="ReleaseIA32"
30 fi 30 fi
31 31
32 if [[ `uname` == 'Darwin' ]]; 32 if [[ `uname` == 'Darwin' ]];
33 then 33 then
34 JAR_DIR="$CUR_DIR"/../../xcodebuild/$DART_CONFIGURATION/new_analyzer 34 JAR_DIR="$CUR_DIR"/../../xcodebuild/$DART_CONFIGURATION/dartanalyzer
35 else 35 else
36 JAR_DIR="$CUR_DIR"/../../out/$DART_CONFIGURATION/new_analyzer 36 JAR_DIR="$CUR_DIR"/../../out/$DART_CONFIGURATION/dartanalyzer
37 fi 37 fi
38 38
39 JAR_FILE="$JAR_DIR/new_analyzer.jar" 39 JAR_FILE="$JAR_DIR/dartanalyzer.jar"
40 40
41 exec java -jar $JAR_FILE --dart-sdk "$SDK_DIR" "$@" 41 exec java -jar $JAR_FILE --dart-sdk "$SDK_DIR" "$@"
OLDNEW
« no previous file with comments | « sdk/bin/analyzer.bat ('k') | sdk/bin/dartanalyzer.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698