Skip to content

Commit

Permalink
added a -- before defining the command to be executed
Browse files Browse the repository at this point in the history
  • Loading branch information
JaimeCernuda committed Oct 17, 2023
1 parent 775635a commit f55415f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jarvis_util/shell/pbs_exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def generate_qsub_command(self):
if value is not None:
cmd += f' -{option} {value}'

cmd += f' {self.cmd}'
cmd += f' -- {self.cmd}'
return cmd

def pbscmd(self):
Expand Down

0 comments on commit f55415f

Please sign in to comment.