Sorts the functions on documentation index

This commit is contained in:
Bruno Tavares 2015-09-30 08:39:50 -03:00
parent 38ad846aeb
commit ad66be4890

View File

@ -10,7 +10,7 @@ docs/index.md: $(shell find docs/kickstart)
echo "# Kickstart" > docs/index.md
echo "" >> docs/index.md
echo "### Functions" >> docs/index.md
find docs/kickstart -type f | cut -d/ -f2- | cut -d. -f1 | xargs -n1 -I l bash -c 'echo "* [$$(echo l | tr / .)](l)"' >> docs/index.md
find docs/kickstart -type f | sort | cut -d/ -f2- | cut -d. -f1 | xargs -n1 -I l bash -c 'echo "* [$$(echo l | tr / .)](l)"' >> docs/index.md
deb: clean
fpm -s dir -t deb -n kickstart \