debian: use sassc to build css files (#35498)

This commit is contained in:
Frédéric Péters 2019-08-21 09:48:33 +02:00
parent 57a3a60739
commit eda2f5b8cd
2 changed files with 2 additions and 2 deletions

2
debian/control vendored
View File

@ -2,7 +2,7 @@ Source: gadjo
Maintainer: Frederic Peters <fpeters@entrouvert.com>
Section: python
Priority: optional
Build-Depends: python-setuptools (>= 33), python-pkg-resources (>= 33), dh-python, dpkg-dev, python-all (>= 2.6.6-3), python2.7-dev, python-all-dev, python3-setuptools, python3-all, debhelper (>= 9), python-django, python3-django, inkscape, python-imaging, python3-pil, libjpeg-dev, zlib1g-dev, ruby-sass (>= 3.4)
Build-Depends: python-setuptools (>= 33), python-pkg-resources (>= 33), dh-python, dpkg-dev, python-all (>= 2.6.6-3), python2.7-dev, python-all-dev, python3-setuptools, python3-all, debhelper (>= 9), python-django, python3-django, inkscape, python-imaging, python3-pil, libjpeg-dev, zlib1g-dev, sassc
Standards-Version: 3.9.1
Package: python-gadjo

View File

@ -96,7 +96,7 @@ class compile_scss(Command):
def run(self):
sass_bin = None
for program in ('sass', 'sassc'):
for program in ('sassc', 'sass'):
sass_bin = find_executable(program)
if sass_bin:
break