Skip to content

Commit bef1319

Browse files
Ronald van Harenmr-c
authored andcommitted
Fix inputs of type int (#998)
1 parent 8f89637 commit bef1319

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cwltool/singularity.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,5 +292,6 @@ def create_runtime(self,
292292
env["SINGULARITYENV_HOME"] = self.builder.outdir
293293

294294
for name, value in self.environment.items():
295-
env["SINGULARITYENV_{}".format(name)] = value
295+
env["SINGULARITYENV_{}".format(name)] = str(value)
296296
return (runtime, None)
297+

0 commit comments

Comments
 (0)