Skip to content

Commit

Permalink
Oops, escape individual folders. Breaking bug for creating dirs.
Browse files Browse the repository at this point in the history
  • Loading branch information
TorecLuik committed May 22, 2024
1 parent 3739180 commit 61fb3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biomero/slurm_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def setup_container_images(self):
# Create specific workflow dirs
with self.cd(self.slurm_images_path):
if self.slurm_model_paths:
modelpaths = " ".join(self.slurm_model_paths.values())
modelpaths = "\" \"".join(self.slurm_model_paths.values())
# mkdir cellprofiler imagej ...
r = self.run_commands([f"mkdir -p \"{modelpaths}\""])
if not r.ok:
Expand Down

0 comments on commit 61fb3af

Please sign in to comment.