Skip to content

Commit ed88ced

Browse files
committed
fixed filepaths
1 parent fa51390 commit ed88ced

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

wfcommons/wfbench/translator/streamflow.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,10 @@ def _write_cwl_files(self, output_folder: pathlib.Path) -> None:
223223

224224
clt_folder = cwl_folder.joinpath("clt")
225225
clt_folder.mkdir(exist_ok=True)
226-
shutil.copy(this_dir.joinpath("templates/cwl_templates/wfbench.cwl"), clt_folder)
227-
shutil.copy(this_dir.joinpath("templates/cwl_templates/folder.cwl"), clt_folder)
228-
shutil.copy(this_dir.joinpath("templates/cwl_templates/shell.cwl"), clt_folder)
229-
shutil.copy(this_dir.joinpath("templates/streamflow_templates/streamflow.yml"), output_folder)
226+
shutil.copy(this_dir.joinpath("templates/cwl/wfbench.cwl"), clt_folder)
227+
shutil.copy(this_dir.joinpath("templates/cwl/folder.cwl"), clt_folder)
228+
shutil.copy(this_dir.joinpath("templates/cwl/shell.cwl"), clt_folder)
229+
shutil.copy(this_dir.joinpath("templates/streamflow/streamflow.yml"), output_folder)
230230

231231
with open(cwl_folder.joinpath("main.cwl"), "w", encoding="utf-8") as f:
232232
f.write("\n".join(self.cwl_script))

wfcommons/wfbench/translator/templates/streamflow_templates/streamflow.yml renamed to wfcommons/wfbench/translator/templates/streamflow/streamflow.yml

File renamed without changes.

0 commit comments

Comments
 (0)