2022-06-26 06:15:09 +08:00
|
|
|
#!/usr/bin/env sh
|
2018-04-12 07:23:35 +08:00
|
|
|
|
|
|
|
cd `dirname $0`
|
|
|
|
|
|
|
|
{
|
2022-08-08 14:59:22 +08:00
|
|
|
echo "/* autogenerated by rethemendex.sh */"
|
2018-04-12 07:23:35 +08:00
|
|
|
|
2018-04-17 23:55:32 +08:00
|
|
|
# we used to have exclude /themes from the find at this point.
|
|
|
|
# as themes are no longer a spurious subdirectory of css/, we don't
|
|
|
|
# need it any more.
|
2022-07-15 21:53:23 +08:00
|
|
|
find . -iname _\*.pcss | fgrep -v _components.pcss | LC_ALL=C sort |
|
2018-04-12 07:23:35 +08:00
|
|
|
while read i; do
|
|
|
|
echo "@import \"$i\";"
|
|
|
|
done
|
2022-07-15 21:53:23 +08:00
|
|
|
} > _components.pcss
|