diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-03-22 13:13:26 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-03-22 13:13:26 +0000 |
commit | e2cc014a4dc1728d78cbf8e076f1a15645d1e6e7 (patch) | |
tree | 2b391bcef8f1d01de647c1d54e9de8536dd6600c /bin/make_css | |
parent | 5268a7dd4fb783e6b3f7b5387aa0b99708157b65 (diff) |
Initial creation of Bromley cobrand.
Diffstat (limited to 'bin/make_css')
-rwxr-xr-x | bin/make_css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/make_css b/bin/make_css index 70625b2f4..27cbec1b5 100755 --- a/bin/make_css +++ b/bin/make_css @@ -15,9 +15,10 @@ DIRECTORY=$(cd `dirname $0`/../web && pwd) # FixMyStreet uses compass compass compile --output-style compressed $DIRECTORY/cobrands/fixmystreet +compass compile --output-style compressed $DIRECTORY/cobrands/bromley # The rest are plain sass -for scss in `find $DIRECTORY -name "*.scss" -exec dirname {} \; | uniq | grep -v cobrands/fixmystreet` +for scss in `find $DIRECTORY -name "*.scss" -exec dirname {} \; | uniq | grep -v "cobrands/\(fixmystreet\|bromley\)"` do sass --scss --update --style compressed $scss done |