File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -242,6 +242,9 @@ if [ $exitcode -eq 0 ]; then
242242 # read options file name
243243 JVMOptionsFile=$( plist_get_java ' :JVMOptionsFile' )
244244
245+ # read bootstrap script file name
246+ BootstrapScript=$( plist_get_java ' :BootstrapScript' )
247+
245248# read 'Info.plist' file in Oracle style
246249else
247250 stub_logger " [PlistStyle] Oracle"
306309 # read options file name
307310 JVMOptionsFile=$( plist_get ' :JVMOptionsFile' )
308311
312+ # read bootstrap script file name
313+ BootstrapScript=$( plist_get ' :BootstrapScript' )
314+
309315fi
310316
311317# read JVM options from file
@@ -874,7 +880,7 @@ cd "${WorkingDirectory}" || exit 13
874880stub_logger " [WorkingDirectory] ${WorkingDirectory} "
875881
876882# invoke bootstrap script
877- Bootstrap= $ResourcesFolder /scripts/bootstrap && [ -x " $Bootstrap " ] && $Bootstrap
883+ [ -x " $BootstrapScript " ] && " $BootstrapScript "
878884
879885# execute Java and set
880886# - classpath
You can’t perform that action at this time.
0 commit comments