blob: 59acdb9842564a43eb417f9b77b9a8e7fd802a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
#
# make_css:
# Generate CSS files from SCSS files.
# Curerntly the CSS files are also in version control, though I guess
# in future they don't need to be, and compressed style could then be used.
#
# Copyright (c) 2011 UK Citizens Online Democracy. All rights reserved.
# Email: matthew@mysociety.org. WWW: http://www.mysociety.org
#
# $Id: send-reports,v 1.79 2010-01-06 16:50:26 louise Exp $
DIRECTORY=$(cd `dirname $0` && pwd)
sass --scss --update --style compressed $DIRECTORY/..
|