From: Felipe Contreras Date: Thu, 4 Apr 2013 15:36:16 +0000 (-0600) Subject: remote-bzr: avoid echo -n X-Git-Tag: v1.8.3-rc0~92^2~3 X-Git-Url: http://git.bitbasher.net/?a=commitdiff_plain;h=afeb525980e2a7d2f01e4611f61080fbeac18411;p=git.git 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 --- 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 '