aboutsummaryrefslogtreecommitdiffstats
path: root/bin/make_css
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2011-09-02 15:43:26 +0100
committerMatthew Somerville <matthew@mysociety.org>2011-09-02 15:59:14 +0100
commit810dc52bee762bb9211041b4cb9e70386c783068 (patch)
treec0a8b0d1955f9d7bcb2fc8e5137cedc1394fc10e /bin/make_css
parent6b01e62f553afadc644bdda4c3f460757a20ffef (diff)
Versioning of CSS files, remove generated CSS files from repo.
Diffstat (limited to 'bin/make_css')
-rwxr-xr-xbin/make_css2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/make_css b/bin/make_css
index 7e01da267..c22848f50 100755
--- a/bin/make_css
+++ b/bin/make_css
@@ -13,6 +13,6 @@
DIRECTORY=$(cd `dirname $0` && pwd)
for file in `find $DIRECTORY/../ -name "*.scss" ! -name "_*"`; do
- sass --style expanded $file ${file/scss/css}
+ sass --style compressed $file ${file/scss/css}
done