forked from AuroraMiddleware/gtk
dcdd31e6f3
Make parse-sass.sh use sassc instead of the old Ruby method.
14 lines
309 B
Bash
Executable File
14 lines
309 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if [ ! "$(which sassc 2> /dev/null)" ]; then
|
|
echo sassc needs to be installed to generate the css.
|
|
exit 1
|
|
fi
|
|
|
|
SASSC_OPT="-M -t compact"
|
|
|
|
echo Generating the css...
|
|
|
|
sassc $SASSC_OPT gtk-contained.scss gtk-contained.css
|
|
sassc $SASSC_OPT gtk-contained-inverse.scss gtk-contained-inverse.css
|