Fix the delete command for Windows shells

parent a1a070e2
......@@ -178,7 +178,7 @@ def check_windows():
def del_command():
"""Get a string with the O.S. specific delete command"""
if check_windows():
return "rm -rf"
return "del /s /q"
else:
return "rm -rf"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment