OLD | NEW |
1 #!/bin/sh | 1 #! /bin/sh |
2 | 2 |
3 # Deprecated | 3 # Deprecated |
4 | 4 |
5 # Create the union of two results files, preserving | 5 # Create the union of two results files, preserving |
6 # annotations in both files in the result. | 6 # annotations in both files in the result. |
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 fb_maxheap=${fb_maxheap:-"-Xmx768m"} | 71 fb_maxheap=${fb_maxheap:-"-Xmx768m"} |
72 fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"} | 72 fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"} |
73 set -f | 73 set -f |
74 #echo command: \ | 74 #echo command: \ |
75 exec "$fb_javacmd" \ | 75 exec "$fb_javacmd" \ |
76 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \ | 76 -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \ |
77 -Dfindbugs.home="$findbugs_home"\ | 77 -Dfindbugs.home="$findbugs_home"\ |
78 $fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs | 78 $fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs |
79 | 79 |
80 # vim:ts=3 | 80 # vim:ts=3 |
OLD | NEW |