Skip to content
This repository has been archived by the owner on Apr 26, 2021. It is now read-only.

Executing 'cuckoo clean' will delete directories that symlinks point to #3090

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cuckoo/apps/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,8 @@ def cuckoo_clean():
for path in paths:
if os.path.isdir(path):
try:
# handle soft-links cases
path = os.path.realpath(path)
shutil.rmtree(path)
os.mkdir(path)
except (IOError, OSError) as e:
Expand Down