5067ac1598
/bin is the canonical location for the bourne shell, not /usr/bin (for systems that still stick with the historical split). https://bugzilla.gnome.org/show_bug.cgi?id=786419
11 lines
153 B
Bash
Executable File
11 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
stamp=${1}
|
|
for scss in $srcdir/*.scss
|
|
do
|
|
sassc -a $scss ${scss%%.scss}.css || exit 1
|
|
done
|
|
|
|
[ "$stamp" ] && touch $stamp
|