Skip to content

Commit 09b1f46

Browse files
vjaganat90Vasu Jaganath
andauthored
correct the deletion of autogenerated (PolusAI#335)
Co-authored-by: Vasu Jaganath <[email protected]>
1 parent 813e988 commit 09b1f46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sophios/api/pythonapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ def get_cwl_workflow(self, args_dict: Dict[str, str] = {}) -> Json:
802802
**cwl_ast
803803
}
804804
# delete the skeletal and ephemeral autogenerated folder
805-
_ = sub.run(['rm', '-rf', 'autogenerated'], shell=True, check=False, executable="/bin/bash")
805+
_ = sub.run(['rm -rf autogenerated'], shell=True, check=False, executable="/bin/bash")
806806
return workflow_json
807807

808808
def run(self, compile_args_dict: Dict[str, str] = {}, run_args_dict: Dict[str, str] = {}) -> None:

0 commit comments

Comments
 (0)