Remove sort and include new scss file in components

This commit is contained in:
Jorik Schellekens 2020-04-02 13:42:59 +01:00
parent df1a8b288b
commit 202ad9f98a
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,6 @@
// autogenerated by rethemendex.sh
@import "./_common.scss";
@import "./_font-sizes.scss";
@import "./structures/_AutoHideScrollbar.scss";
@import "./structures/_CompatibilityPage.scss";
@import "./structures/_ContextualMenu.scss";

View file

@ -8,7 +8,7 @@ cd `dirname $0`
# 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 |
find . -iname _\*.scss | fgrep -v _components.scss | LC_ALL=C sort |
while read i; do
echo "@import \"$i\";"
done