Skip to content

Commit afeb525

Browse files
felipecgitster
authored andcommitted
remote-bzr: avoid echo -n
It's not portable, as reported by test-lint. Signed-off-by: Felipe Contreras <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent cc3e4eb commit afeb525

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/remote-helpers/test-bzr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ test_expect_success 'special modes' '
136136
(cd gitrepo &&
137137
git cat-file -p HEAD:link > ../actual) &&
138138
139-
echo -n content > expected &&
139+
printf content > expected &&
140140
test_cmp expected actual
141141
'
142142

0 commit comments

Comments
 (0)