From d666fa409ae2e1c6926888c93942a14d568360c2 Mon Sep 17 00:00:00 2001 From: Nick Campbell Date: Tue, 24 Aug 2010 09:45:22 -0400 Subject: [PATCH] read doesn't have the -e option in SH on my machine at least. Signed-off-by: Nick Campbell --- bin/git-repl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-repl b/bin/git-repl index 2f58292..d1fe151 100755 --- a/bin/git-repl +++ b/bin/git-repl @@ -2,7 +2,7 @@ while true; do # Readline - read -e -r -p "git> " cmd + read -r -p "git> " cmd # EOF test $? -ne 0 && break