Clean up loc

LOC was broken and called out vagrant specifically.  This patch
makes LOC work and renames "Vagrant" to "devenv".

Change-Id: I29f930114d3cba17e870437c99eb3cbae6abb251
This commit is contained in:
Steven Dake 2016-11-18 07:24:24 -05:00
parent 19070253d7
commit 3a5a31e456
1 changed files with 4 additions and 6 deletions

View File

@ -1,6 +1,5 @@
#!/bin/bash
ANSIBLE=`find ansible -type f -exec cat {} \; | wc -l`
DOCKER=`find docker -type f -exec cat {} \; | wc -l`
DOC=`find doc -type f -exec cat {} \; | wc -l`
TESTS=`find tests -type f -exec cat {} \; | wc -l`
@ -10,14 +9,13 @@ DEMOS=`find contrib/demos -type f -exec cat {} \; | wc -l`
SPECS=`find specs -type f -exec cat {} \; | wc -l`
ETC=`find etc -type f -exec cat {} \; | wc -l`
TOOLS=`find tools -type f -exec cat {} \; | wc -l`
VAGRANT=`find contrib/dev/vagrant -type f -exec cat {} \; | wc -l`
DEVENV=`find contrib/dev -type f -exec cat {} \; | wc -l`
CORE=$(($ANSIBLE+$DOCKER+$TESTS+$DOCS+$BUILD))
SUPP=$(($DEMOS+$HEAT+$SPECS+$ETC+$TOOLS+$VAGRANT))
CORE=$(($DOCKER+$TESTS+$DOCS+$BUILD+$TOOLS))
SUPP=$(($DEVENV+$SPECS+$ETC))
TOTAL=$(($CORE+$SUPP))
echo "Ansible $ANSIBLE"
echo "Build $BUILD"
echo "Demos $DEMOS"
echo "Doc $DOC"
@ -26,7 +24,7 @@ echo "Docker $DOCKER"
echo "Specs $SPECS"
echo "Tests $TESTS"
echo "Tools $TOOLS"
echo "Vagrant $VAGRANT"
echo "Devenv $DEVENV"
echo ""
echo "Core Code $CORE"
echo "Support Code $SUPP"