diff --git a/.gitignore b/.gitignore index bf645b4d..bc37ea30 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,8 @@ combo.egg-info/ .sass-cache/ combo/apps/maps/static/css/combo.map.css combo/apps/maps/static/css/combo.map.css.map +data/themes/gadjo/static/css/agent-portal.css +data/themes/gadjo/static/css/agent-portal.css.map .cache .coverage .pytest_cache/ diff --git a/data/themes/gadjo/static/css/agent-portal.css b/data/themes/gadjo/static/css/agent-portal.scss similarity index 100% rename from data/themes/gadjo/static/css/agent-portal.css rename to data/themes/gadjo/static/css/agent-portal.scss diff --git a/setup.py b/setup.py index 5bd5adb2..9e3ff42e 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,7 @@ # -*- coding: utf-8 -*- import glob +import itertools import os import re import subprocess @@ -102,7 +103,7 @@ class compile_scss(Command): if not sass_bin: raise CompileError('A sass compiler is required but none was found. See sass-lang.com for choices.') - for path, dirnames, filenames in os.walk('combo'): + for path, dirnames, filenames in itertools.chain(os.walk('combo'), os.walk('data')): for filename in filenames: if not filename.endswith('.scss'): continue