diff options
author | Eric Wong <normalperson@yhbt.net> | 2010-08-19 12:03:18 -0700 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2010-08-19 12:14:34 -0700 |
commit | 5bc99d3f633b9fba288b1b2c3ebde3124f374275 (patch) | |
tree | 274751e95afe1c623012bfafcf81b143a3cc1f26 /t | |
parent | bd3a97a27a97485b130802d497214be312b737f9 (diff) | |
download | git-5bc99d3f633b9fba288b1b2c3ebde3124f374275.tar.gz git-5bc99d3f633b9fba288b1b2c3ebde3124f374275.tar.xz |
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>
Diffstat (limited to 't')
-rwxr-xr-x | t/t9155-git-svn-fetch-deleted-tag.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9155-git-svn-fetch-deleted-tag.sh b/t/t9155-git-svn-fetch-deleted-tag.sh index ef0ac8779..a486a98f8 100755 --- a/t/t9155-git-svn-fetch-deleted-tag.sh +++ b/t/t9155-git-svn-fetch-deleted-tag.sh @@ -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 && |