Skip to content

Commit

Permalink
Merge pull request #3071 from vkarak/enhancement/quote-reframe-command
Browse files Browse the repository at this point in the history
[enhancement] Properly quote reframe command in output
  • Loading branch information
vkarak authored Dec 5, 2023
2 parents 5b20afc + daf0086 commit 0ce98ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reframe/frontend/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ def print_infoline(param, value):
printer.info(f" {param.ljust(18)} {value}")

session_info = {
'cmdline': ' '.join(sys.argv),
'cmdline': ' '.join(shlex.quote(arg) for arg in sys.argv),
'config_files': rt.site_config.sources,
'data_version': runreport.DATA_VERSION,
'hostname': socket.gethostname(),
Expand Down

0 comments on commit 0ce98ee

Please sign in to comment.