Skip to content

Commit

Permalink
Fix rsync shell escape
Browse files Browse the repository at this point in the history
  • Loading branch information
frthjf committed Dec 24, 2024
1 parent 8886355 commit ae45aaf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/examples/slurm-execution/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,10 @@ def __call__(self):
cmd = [
"rsync",
"-rLptgoD",
"--exclude '.git'",
"--filter='dir-merge,- .gitignore'",
"--exclude",
".git",
"--filter",
"dir-merge,- .gitignore",
Project.get().path(""),
source_code,
]
Expand Down

0 comments on commit ae45aaf

Please sign in to comment.