File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
substratevm/src/com.oracle.svm.driver/src/com/oracle/svm/driver Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1223,9 +1223,11 @@ private int completeImageBuild() {
12231223
12241224 List <Path > imageProvidedJars ;
12251225 if (USE_NI_JPMS ) {
1226- finalImageModulePath .addAll (imageProvidedJars = config .getImageProvidedModulePath ());
1226+ imageProvidedJars = config .getImageProvidedModulePath ();
1227+ finalImageModulePath .addAll (imageProvidedJars );
12271228 } else {
1228- finalImageClasspath .addAll (imageProvidedJars = config .getImageProvidedClasspath ());
1229+ imageProvidedJars = config .getImageProvidedClasspath ();
1230+ finalImageClasspath .addAll (imageProvidedJars );
12291231 }
12301232 imageProvidedJars .forEach (this ::processClasspathNativeImageMetaInf );
12311233
You can’t perform that action at this time.
0 commit comments