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

This commit is contained in:
Frédéric Péters 2019-08-21 09:42:20 +02:00
parent 97e9741641
commit 0c5df54ea4
2 changed files with 2 additions and 2 deletions

2
debian/control vendored
View File

@ -2,7 +2,7 @@ Source: chrono
Maintainer: Frederic Peters <fpters@entrouvert.com>
Section: python
Priority: optional
Build-Depends: python3-setuptools, python3-all, python3-django, debhelper (>= 9), dh-python, dh-systemd, ruby-sass
Build-Depends: python3-setuptools, python3-all, python3-django, debhelper (>= 9), dh-python, dh-systemd, sassc
Standards-Version: 3.9.6
Package: python3-chrono

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