File tree 2 files changed +7
-6
lines changed 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -164,11 +164,11 @@ def collect_java_binaries(cmdline):
164
164
copied_command_line = {key .replace ("_" , "-" ): val for key , val in vars (cmdline ).items ()}
165
165
166
166
# Loop over all our detected entry points and create a folder for each.
167
- class_paths = [ p for p in (modelled_java_libraries .classpath_jar_files +
168
- modelled_library_directories +
169
- java_binaries .classpath_jar_files +
170
- java_libraries .classpath_jar_files +
171
- library_directories )]
167
+ class_paths = (modelled_java_libraries .classpath_jar_files +
168
+ modelled_library_directories +
169
+ java_binaries .classpath_jar_files +
170
+ java_libraries .classpath_jar_files +
171
+ library_directories )
172
172
for ep_data in ep_config ["entryPoints" ]:
173
173
174
174
method_data = ep_data ["method" ]
Original file line number Diff line number Diff line change @@ -157,7 +157,8 @@ def create_parser():
157
157
"option the GOTO binary won't be produced and taint analysis is applied directly to "
158
158
"the loaded Java program (translated to GOTO in the memory)." )
159
159
parser .add_argument ("--use-models-library" , action = "store_true" ,
160
- help = "Add the Diffblue Models Library's JAR file to the classpath of the security-scanner." )
160
+ help = "Add the Diffblue Models Library's JAR file to the classpath of the security-scanner. "
161
+ "It will be put in front of the JARs of the analysed web application." )
161
162
parser .add_argument ("--use-java-runtime-library" , action = "store_true" ,
162
163
help = "Add the Java standard library to the classpath. First, there will be attempt to add "
163
164
"OpenJDK version of the library. If it is not found (e.g. not installed), then the "
You can’t perform that action at this time.
0 commit comments