Skip to content

Commit 7b29867

Browse files
committed
There is no need to escape values here since the script generator already does it.
1 parent 79309dc commit 7b29867

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/psij/executors/batch/batch_scheduler_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _env_to_mustache(job: Job) -> List[Dict[str, str]]:
5555

5656
r = []
5757
for k, v in job.spec.environment.items():
58-
r.append({'name': k, 'value': bash_escape(v)})
58+
r.append({'name': k, 'value': v})
5959
return r
6060

6161

0 commit comments

Comments
 (0)