Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mharding-hpe committed Sep 17, 2024
1 parent f661cfd commit 73dd503
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cray/modules/bos/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,10 @@ def modify_component_patch():
'--desired-state-boot-artifacts-kernel ""'
)(source_command)
for param in source_command.params:
dbg(f'update: {param}')
dbg(f'update-before: {param}')
source_command.params = [source_command.params[-1]] + source_command.params[:-1]
for param in source_command.params:
dbg(f'update-after: {param}')
source_command.callback = create_patch_compnent_shim(source_command.callback)


Expand Down

0 comments on commit 73dd503

Please sign in to comment.