From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43433) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gF6w3-0004Qt-Tq for guix-patches@gnu.org; Tue, 23 Oct 2018 20:22:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gF6vy-0007hS-US for guix-patches@gnu.org; Tue, 23 Oct 2018 20:22:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34683) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gF6vy-0007fx-N1 for guix-patches@gnu.org; Tue, 23 Oct 2018 20:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gF6vy-0005Hs-BI for guix-patches@gnu.org; Tue, 23 Oct 2018 20:22:02 -0400 Subject: [bug#33134] [PATCH 1/1] guix-install.sh: Update welcome. Resent-Message-ID: From: rsiddharth Date: Tue, 23 Oct 2018 20:21:14 -0400 Message-Id: <20181024002114.46005-1-s@ricketyspace.net> In-Reply-To: <20181024001542.16368-1-s@ricketyspace.net> References: <20181024001542.16368-1-s@ricketyspace.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33134@debbugs.gnu.org Cc: rsiddharth * etc/guix-install.sh (welcome): Read exactly one character from input. --- etc/guix-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/guix-install.sh b/etc/guix-install.sh index ca6874ba0..cf839c20e 100755 --- a/etc/guix-install.sh +++ b/etc/guix-install.sh @@ -398,7 +398,7 @@ This script installs GNU Guix on your system https://www.gnu.org/software/guix/ EOF echo -n "Press return to continue..." - read -r ANSWER + read -N 1 -r ANSWER } main() -- 2.19.1