Skip to content

Commit

Permalink
remote_init: remove trailing space from symlink paths (#5969)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-sanders authored Feb 15, 2024
1 parent 57fe4ae commit 4eb7d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cylc/flow/task_remote_mgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def remote_init(
dirs_to_symlink = get_dirs_to_symlink(install_target, self.workflow)
for key, value in dirs_to_symlink.items():
if value is not None:
cmd.append(f"{key}={quote(value)} ")
cmd.append(f"{key}={quote(value)}")

Check warning on line 250 in cylc/flow/task_remote_mgr.py

View check run for this annotation

Codecov / codecov/patch

cylc/flow/task_remote_mgr.py#L250

Added line #L250 was not covered by tests
# Create the ssh command
try:
host = get_host_from_platform(
Expand Down

0 comments on commit 4eb7d82

Please sign in to comment.