From 551c4b99c442a1a23ebc013065203ca18fa1620d Mon Sep 17 00:00:00 2001 From: Johannes Schlatow Date: Tue, 14 Dec 2010 10:27:28 +0100 Subject: [PATCH] Bug #570 - fixed merge/push/pull bug (missing brace expansion in dash) --- src/Transport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Transport.cpp b/src/Transport.cpp index 63b18cd1d..125c209fd 100644 --- a/src/Transport.cpp +++ b/src/Transport.cpp @@ -78,7 +78,7 @@ int Transport::execute() if (child_pid == 0) { // this is done by the child process - char shell[] = "sh"; + char shell[] = "bash"; char opt[] = "-c"; std::string cmdline = executable;