Skip to content

Commit

Permalink
Remove $ when writing job name in LocalProvider (#3440)
Browse files Browse the repository at this point in the history
Fixes #3437
  • Loading branch information
WardLT committed May 17, 2024
1 parent b214714 commit a7cf9b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/providers/local/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def submit(self, command, tasks_per_node, job_name="parsl.localprovider"):
script_path = "{0}/{1}.sh".format(self.script_dir, job_name)
script_path = os.path.abspath(script_path)

wrap_command = self.worker_init + f'\nexport JOBNAME=${job_name}\n' + self.launcher(command, tasks_per_node, self.nodes_per_block)
wrap_command = self.worker_init + f'\nexport JOBNAME={job_name}\n' + self.launcher(command, tasks_per_node, self.nodes_per_block)

self._write_submit_script(wrap_command, script_path)

Expand Down

0 comments on commit a7cf9b4

Please sign in to comment.