Files
ThreadNet-Web/src/skins/vector/css/rethemendex.sh
T

14 lines
285 B
Bash
Raw Normal View History

2016-12-28 02:02:05 +00:00
#!/bin/bash
2017-01-19 16:58:55 +00:00
cd `dirname $0`
2016-12-28 02:02:05 +00:00
2017-01-19 16:58:55 +00:00
{
echo "// autogenerated by rethemendex.sh"
find . \! \( -path ./themes -prune \) -iname _\*.scss |
fgrep -v _components.scss | LC_ALL=C sort |
while read i; do
echo "@import \"$i\";"
done
} > _components.scss