Git fork

t/t9118-git-svn-funky-branch-names.sh: sed needs semicolon

POSIX specifies that all editing commands between braces shall be
terminated by a <newline> or <semicolon>.

Signed-off-by: Marcel Telka <marcel@telka.sk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Marcel Telka and committed by
Junio C Hamano
22c22d30 50acb483

+1 -1
+1 -1
t/t9118-git-svn-funky-branch-names.sh
··· 38 38 # SVN 1.7 will truncate "not-a%40{0]" to just "not-a". 39 39 # Look at what SVN wound up naming the branch and use that. 40 40 # Be sure to escape the @ if it shows up. 41 - non_reflog=$(svn_cmd ls "$svnrepo/pr ject/branches" | sed -ne '/not-a/ { s/\///; s/@/%40/; p }') 41 + non_reflog=$(svn_cmd ls "$svnrepo/pr ject/branches" | sed -ne '/not-a/ { s/\///; s/@/%40/; p; }') 42 42 43 43 test_expect_success 'test clone with funky branch names' ' 44 44 git svn clone -s "$svnrepo/pr ject" project &&