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 c5114a7 commit d2ed670Copy full SHA for d2ed670
cylc/flow/scripts/reinstall.py
@@ -348,6 +348,7 @@ def format_reinstall_output(out: str) -> List[str]:
348
# Skip this line as nothing will happen to this dir.
349
continue
350
match = re.match(r'^(.{11}) (send|del\.|recv) (.*)$', line)
351
+ # (On some systems, may get "recv" instead of "send")
352
if match:
353
summary, operation, file = match.groups()
354
color = 'green' if operation == 'send' else 'red'
0 commit comments