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

Side by Side Diff: third_party/findbugs/bin/findbugs2

Issue 11226050: Fix check_perms error from the findbugs checkin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 1 month 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 | « third_party/findbugs/bin/findbugs-msv ('k') | third_party/findbugs/bin/listBugDatabaseInfo » ('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/sh 1 #!/bin/sh
2 2
3 # 3 #
4 # Simplified findbugs startup script. 4 # Simplified findbugs startup script.
5 # This is an experiment. 5 # This is an experiment.
6 # 6 #
7 7
8 program="$0" 8 program="$0"
9 9
10 # Follow symlinks until we get to the actual file. 10 # Follow symlinks until we get to the actual file.
11 while [ -h "$program" ]; do 11 while [ -h "$program" ]; do
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 # 168 #
169 # Launch JVM 169 # Launch JVM
170 # 170 #
171 exec "$fb_javacmd" \ 171 exec "$fb_javacmd" \
172 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \ 172 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \
173 -Dfindbugs.home="$findbugs_home" \ 173 -Dfindbugs.home="$findbugs_home" \
174 $jvm_debug $jvm_maxheap $jvm_ea $jvm_conservespace $jvm_user_props \ 174 $jvm_debug $jvm_maxheap $jvm_ea $jvm_conservespace $jvm_user_props \
175 -Dfindbugs.launchUI=$fb_launchui \ 175 -Dfindbugs.launchUI=$fb_launchui \
176 -jar $findbugs_home/lib/findbugs.jar \ 176 -jar $findbugs_home/lib/findbugs.jar \
177 ${@:+"$@"} 177 ${@:+"$@"}
OLDNEW
« no previous file with comments | « third_party/findbugs/bin/findbugs-msv ('k') | third_party/findbugs/bin/listBugDatabaseInfo » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698