Remove sort and include new scss file in components
This commit is contained in:
parent
df1a8b288b
commit
202ad9f98a
2 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
// autogenerated by rethemendex.sh
|
// autogenerated by rethemendex.sh
|
||||||
@import "./_common.scss";
|
@import "./_common.scss";
|
||||||
|
@import "./_font-sizes.scss";
|
||||||
@import "./structures/_AutoHideScrollbar.scss";
|
@import "./structures/_AutoHideScrollbar.scss";
|
||||||
@import "./structures/_CompatibilityPage.scss";
|
@import "./structures/_CompatibilityPage.scss";
|
||||||
@import "./structures/_ContextualMenu.scss";
|
@import "./structures/_ContextualMenu.scss";
|
||||||
|
|
|
@ -8,7 +8,7 @@ cd `dirname $0`
|
||||||
# we used to have exclude /themes from the find at this point.
|
# 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
|
# as themes are no longer a spurious subdirectory of css/, we don't
|
||||||
# need it any more.
|
# 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
|
while read i; do
|
||||||
echo "@import \"$i\";"
|
echo "@import \"$i\";"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue