It's become obvious that these random floating points everywhere are unwieldy. Now they're all in one place with some fairly logical variable names which will help out in design->implementation phase.
15 lines
416 B
Bash
Executable file
15 lines
416 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd `dirname $0`
|
|
|
|
{
|
|
echo "// autogenerated by rethemendex.sh"
|
|
|
|
# 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.
|
|
find . -iname _\*.scss | sort | fgrep -v _components.scss | LC_ALL=C sort |
|
|
while read i; do
|
|
echo "@import \"$i\";"
|
|
done
|
|
} > _components.scss
|