We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb434e0 commit f12feeaCopy full SHA for f12feea
codeHF/workflows.yml
@@ -8,7 +8,7 @@ options:
8
- "--resources-monitoring 2"
9
local: # used for every workflow
10
- "-b"
11
- - "--configuration json://$JSON"
+ - "--configuration json://\"$JSON\""
12
# - "--min-failure-level error"
13
14
workflows:
exec/make_command_o2.py
@@ -291,8 +291,8 @@ def main():
291
command += "| \\\n" + string_wf + " "
292
if not command:
293
msg_fatal("Nothing to do!")
294
- # Remove the leading "| \\\n".
295
- command = command[4:]
+ # Remove the leading "| \\\n" and the trailing " ".
+ command = command[4:-1]
296
# Append performance profiling options.
297
if perf:
298
opt_perf = "perf record -F 99 -g --call-graph dwarf --user-callchains"
0 commit comments