From 15b9581220518ac73b59e508025469207cebc48f Mon Sep 17 00:00:00 2001 From: p4bl0 Date: Sun, 14 Aug 2011 02:36:14 +0200 Subject: bugfix: do not try to git init if there already a git repos (oops ^^) --- install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index c837120..68f00ec 100644 --- a/install.sh +++ b/install.sh @@ -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... " -- cgit v1.2.3