Use long format for git status, add message when not a git repo

This commit is contained in:
Jeremy Soller 2017-07-22 13:26:36 -06:00
parent 1df0bc5443
commit eb0a4c7315

View File

@ -15,6 +15,8 @@ do
echo -e "\e[1m$recipe\e[0m"
if [ -d "recipes/$recipe/source/.git" ]
then
git -C "recipes/$recipe/source" status -s
git -C "recipes/$recipe/source" status
else
echo "Not a GIT repository"
fi
done