From 2f8a81743d1caba0ce736c799d292d9969c1d1b4 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Wed, 16 Jul 2014 16:35:33 +0200 Subject: [PATCH] Also create files denoting we don't want mercurial or the host is not a server --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 24af648..34681c7 100644 --- a/install.sh +++ b/install.sh @@ -50,7 +50,7 @@ echo "Do you wish to install mercurial stuff?" select yn in "Yes" "No"; do case $yn in Yes ) install_hg; break;; - No ) break;; + No ) touch ~/.dot_no_hg; break;; esac done @@ -59,6 +59,6 @@ echo "Is this machine a server?" select yn in "Yes" "No"; do case $yn in Yes ) touch ~/.dot_is_server; break;; - No ) break;; + No ) touch ~/.dot_no_server; break;; esac done