Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
closes #764
Browse files Browse the repository at this point in the history
  • Loading branch information
forman committed Sep 24, 2018
1 parent e2dfa83 commit 9e2dd00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cate/core/wsmanag.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def save_workspace_as(self, base_dir: str, to_dir: str,
# If it was a scratch workspace, delete the original
if workspace.is_scratch:
try:
shutil.rmtree(base_dir)
shutil.rmtree(base_dir, ignore_errors=True)
except (PermissionError, OSError):
pass
monitor.progress(work=5)
Expand Down

0 comments on commit 9e2dd00

Please sign in to comment.