Skip to content

Commit 1e3a59b

Browse files
committed
Fix 3rd argument passed to java_properties_escape
1 parent 8e3ef41 commit 1e3a59b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/mx.sdk/mx_sdk_vm_impl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1298,7 +1298,7 @@ def _write_ln(s):
12981298
_write_ln(u'ImageModule=' + java_properties_escape(image_config.main_module))
12991299
if location_classpath:
13001300
image_path_arg = u'ImageModulePath=' if build_with_module_path else u'ImageClasspath='
1301-
_write_ln(image_path_arg + java_properties_escape(':'.join(("${.}/" + e.replace(os.sep, '/') for e in location_classpath)), ':', len('ImageClasspath')))
1301+
_write_ln(image_path_arg + java_properties_escape(':'.join(("${.}/" + e.replace(os.sep, '/') for e in location_classpath)), ':', len(image_path_arg)))
13021302
_write_ln(u'Args=' + java_properties_escape(' '.join(build_args), ' ', len('Args')))
13031303
return self._contents
13041304

0 commit comments

Comments
 (0)