1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 20:35:11 +01:00

Also create files denoting we don't want mercurial or the host is not a server

This commit is contained in:
Michiel Scholten
2014-07-16 16:35:33 +02:00
parent 31eab56920
commit 2f8a81743d

View File

@@ -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