t9155: fix compatibility with older SVN

The "--parents" option did not appear until SVN 1.5.x
and is completely unnecessary in this case.

Reported-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Eric Wong <normalperson@yhbt.net>
This commit is contained in:
Eric Wong 2010-08-19 12:03:18 -07:00
Родитель bd3a97a27a
Коммит 5bc99d3f63
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -12,7 +12,7 @@ test_expect_success 'setup svn repo' '
svn_cmd import -m "import for git svn" import "$svnrepo" &&
rm -rf import &&
svn_cmd mkdir --parents -m "create mybranch directory" "$svnrepo/branches/mybranch" &&
svn_cmd mkdir -m "create mybranch directory" "$svnrepo/branches/mybranch" &&
svn_cmd cp -m "create branch mybranch" "$svnrepo/trunk" "$svnrepo/branches/mybranch/trunk" &&
svn_cmd co "$svnrepo/trunk" svn_project &&