mirror of
https://github.com/django/django.git
synced 2025-11-15 09:40:57 +00:00
Fixed #23986 -- Fixed collectstatic --clear failure if STATIC_ROOT dir doesn't exist.
This commit is contained in:
parent
90b069c33f
commit
87d78241a2
2 changed files with 7 additions and 0 deletions
|
|
@ -199,6 +199,9 @@ class Command(BaseCommand):
|
|||
"""
|
||||
Deletes the given relative path using the destination storage backend.
|
||||
"""
|
||||
if not self.storage.exists(path):
|
||||
return
|
||||
|
||||
dirs, files = self.storage.listdir(path)
|
||||
for f in files:
|
||||
fpath = os.path.join(path, f)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue