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

Commit

Permalink
Tweaks to support fs backend on django-bakery
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Dec 26, 2017
1 parent b4f1662 commit 18a749e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion bigbuild/views.py
Expand Up @@ -157,7 +157,9 @@ def build_static_directory(self, obj):

# An internal django-bakery trick to gzip them if we need to
if settings.BAKERY_GZIP:
Build().copytree_and_gzip(
cmd = Build()
cmd.set_options()
cmd.copytree_and_gzip(
source_dir,
target_dir
)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,7 +1,7 @@
# Dependencies
Django==1.11
python-frontmatter==0.4.2
django-bakery==0.11.1
-e git+git://github.com/datadesk/django-bakery.git@fs#egg=django-bakery
PyYAML==3.11
validictory==1.0.1
django-compressor==2.0
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -29,6 +29,7 @@ def run(self):
'django.contrib.staticfiles',
'compressor',
'greeking',
'bakery',
'bigbuild',
),
TEMPLATES=[
Expand Down

0 comments on commit 18a749e

Please sign in to comment.