Commit 58424a1c by Timothée Peignier

overwrite existing generated files

parent 7dc5c7b8
......@@ -12,6 +12,11 @@ from pipeline.conf import settings
class PipelineStorage(StaticFilesStorage):
def get_available_name(self, name):
if self.exists(name):
self.delete(name)
return name
def post_process(self, paths, dry_run=False, **options):
from pipeline.packager import Packager
if dry_run:
......
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