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

pull/893/head
Dan Schaper 8 years ago
parent 807b60b0e6
commit 5fef5f1ed4

@ -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() {

Loading…
Cancel
Save