summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index 5b14f72..c837120 100644
--- a/install.sh
+++ b/install.sh
@@ -50,8 +50,13 @@ fugitive_install_config() {
fugitive_install() {
if [ -d ".git" ]; then
- echo "There's already a git repository here, aborting install."
- exit 1
+ echo -n "There's already a git repository here, "
+ echo "enter 'yes' if you want to continue: "
+ read CONTINUE
+ if [ "$CONTINUE" != "yes" ]; then
+ echo "Okay, aborting."
+ exit 1
+ fi
fi
echo -n "Creating new git repository... "
git init >/dev/null