From 08e70c5e45c8040c9e1440c3a7fa9f30caedae14 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Mon, 10 Oct 2011 21:24:17 -0400 Subject: [PATCH] Make the default answer for running an older uninstaller "yes". This makes it behave more like the Windows installer, where the default is to remove an older installation, which most people want to do anyway. --- collects/meta/build/unix-installer/installer-header | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/collects/meta/build/unix-installer/installer-header b/collects/meta/build/unix-installer/installer-header index 7dbbaf130f..ecd42048d4 100644 --- a/collects/meta/build/unix-installer/installer-header +++ b/collects/meta/build/unix-installer/installer-header @@ -454,13 +454,13 @@ fi if test -x "$bindir/racket-uninstall"; then echo "A previous Racket uninstaller is found at" echo " \"$bindir/racket-uninstall\"," - echon " should I run it? (default: no) " + echon " should I run it? (default: yes) " read R case "$R" in - [yY]* ) echon " running uninstaller..." - "$bindir/racket-uninstall" || failwith "problems during uninstall" - echo " done." ;; - * ) failwith "abort..." ;; + [nN]* ) failwith "abort..." ;; + * ) echon " running uninstaller..." + "$bindir/racket-uninstall" || failwith "problems during uninstall" + echo " done." ;; esac fi