Break down is_repo to make sure it does what is expected.

This commit is contained in:
Dan Schaper 2016-11-01 11:54:14 -07:00
parent 807b60b0e6
commit 5fef5f1ed4

View file

@ -49,7 +49,13 @@ is_repo() {
# Use git to check if directory is currently under VCS
echo -n "::: Checking $1 is a repo..."
cd "${1}" &> /dev/null || return 1
git status &> /dev/null && echo " OK!"; return 0 || echo " not found!"; return 1
if [[ $(git status --short) ]]; then
echo " OK!"
return 0
else
echo " not found!"
return 1
fi
}
make_repo() {