Skip to content

Commit

Permalink
Allow passing name for SCP step.
Browse files Browse the repository at this point in the history
  • Loading branch information
jendrikseipp committed Dec 2, 2024
1 parent b92c0c5 commit 1ab48e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/downward/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,10 @@ def _get_exp_dir_relative_to_repo():
return repo_name / rel_script_dir / "data" / expname


def add_scp_step(exp, login, repos_dir):
def add_scp_step(exp, login, repos_dir, name="scp-eval-dir"):
remote_exp = Path(repos_dir) / _get_exp_dir_relative_to_repo()
exp.add_step(
"scp-eval-dir",
name,
subprocess.call,
[
"rsync",
Expand Down

0 comments on commit 1ab48e7

Please sign in to comment.