summaryrefslogtreecommitdiff
path: root/t/t9155-git-svn-fetch-deleted-tag.sh
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-08-19 19:03:18 (GMT)
committerEric Wong <normalperson@yhbt.net>2010-08-19 19:14:34 (GMT)
commit5bc99d3f633b9fba288b1b2c3ebde3124f374275 (patch)
tree274751e95afe1c623012bfafcf81b143a3cc1f26 /t/t9155-git-svn-fetch-deleted-tag.sh
parentbd3a97a27a97485b130802d497214be312b737f9 (diff)
downloadgit-5bc99d3f633b9fba288b1b2c3ebde3124f374275.zip
git-5bc99d3f633b9fba288b1b2c3ebde3124f374275.tar.gz
git-5bc99d3f633b9fba288b1b2c3ebde3124f374275.tar.bz2
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/t9155-git-svn-fetch-deleted-tag.sh')
-rwxr-xr-xt/t9155-git-svn-fetch-deleted-tag.sh2
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 ef0ac87..a486a98 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 &&