From afeb525980e2a7d2f01e4611f61080fbeac18411 Mon Sep 17 00:00:00 2001 From: Felipe Contreras Date: Thu, 4 Apr 2013 09:36:16 -0600 Subject: [PATCH] remote-bzr: avoid echo -n It's not portable, as reported by test-lint. Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- contrib/remote-helpers/test-bzr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/remote-helpers/test-bzr.sh b/contrib/remote-helpers/test-bzr.sh index 70aa8a010a..b81052b61f 100755 --- a/contrib/remote-helpers/test-bzr.sh +++ b/contrib/remote-helpers/test-bzr.sh @@ -136,7 +136,7 @@ test_expect_success 'special modes' ' (cd gitrepo && git cat-file -p HEAD:link > ../actual) && - echo -n content > expected && + printf content > expected && test_cmp expected actual ' -- 2.11.4.GIT