From d666fa409ae2e1c6926888c93942a14d568360c2 Mon Sep 17 00:00:00 2001 From: Nick Campbell Date: Tue, 24 Aug 2010 09:45:22 -0400 Subject: [PATCH 1/2] 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 2f582922d..d1fe1518b 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 From 1158c19b6169d1fcc3930b8cdfd751a1f052a548 Mon Sep 17 00:00:00 2001 From: Jason Young Date: Tue, 24 Aug 2010 21:35:08 -0700 Subject: [PATCH 2/2] Fix printing of authors for git-summary's on Ubuntu --- bin/git-summary | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/git-summary b/bin/git-summary index 64694fa73..9996b268e 100755 --- a/bin/git-summary +++ b/bin/git-summary @@ -9,5 +9,6 @@ echo echo " project: $project" echo " commits: $commit_count" echo " files : $file_count" -echo " authors: \n$authors" +echo " authors: " +echo "$authors" echo \ No newline at end of file