bugfix: do not try to git init if there already a git repos (oops ^^)

This commit is contained in:
p4bl0 2011-08-14 02:36:14 +02:00
parent 1f553d2f7c
commit 15b9581220
1 changed files with 4 additions and 3 deletions

View File

@ -57,10 +57,11 @@ fugitive_install() {
echo "Okay, aborting."
exit 1
fi
else
echo -n "Creating new git repository... "
git init >/dev/null
echo "done."
fi
echo -n "Creating new git repository... "
git init >/dev/null
echo "done."
fugitive_install_config "$1"
fugitive_install_hooks "$1"
echo -n "Preventing git to track temporary and generated files... "