Skip to content

Commit

Permalink
fix error around local variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
wirthi committed May 24, 2024
1 parent 0f8dcf7 commit f110d36
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions substratevm/mx.substratevm/mx_substratevm.py
Original file line number Diff line number Diff line change
Expand Up @@ -2024,9 +2024,10 @@ def native_image_on_jvm(args, **kwargs):
args.append("-D" + key + "=" + value)

jacoco_args = mx_gate.get_jacoco_agent_args(agent_option_prefix='-J')
passedArgs = args
if jacoco_args is not None:
arg += jacoco_args
mx.run([executable] + _debug_args() + args, **kwargs)
passedArgs += jacoco_args
mx.run([executable] + _debug_args() + passedArgs, **kwargs)

@mx.command(suite.name, 'native-image-configure')
def native_image_configure_on_jvm(args, **kwargs):
Expand Down

0 comments on commit f110d36

Please sign in to comment.