15d387df5f
GTK+ switched from ruby-based sass to c-based sassc for performance reasons. It makes sense to follow suit, if not to not require two tools for the same job ... https://bugzilla.gnome.org/show_bug.cgi?id=783210
8 lines
106 B
Bash
Executable File
8 lines
106 B
Bash
Executable File
#!/usr/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
for scss in $srcdir/*.scss
|
|
do
|
|
sassc -a $scss ${scss%%.scss}.css
|
|
done
|