Files
gnome-shell-extensions/data/update-theme.sh
Florian Müllner 3ab01aebec build: Support the meson build system
Meson is on track to replace autotools as the build system of choice,
so support it in addition to autotools.

Fixes https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/31
2017-12-01 17:41:04 +01:00

10 lines
114 B
Bash
Executable File

#!/bin/sh
INPUT=$1
OUTPUT=$2
if [ `which sassc` ]
then
sassc -a $INPUT | tee ${INPUT%%.scss}.css > $OUTPUT
fi