1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* tool/make-snapshot: fixed typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17467 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-06-20 03:19:38 +00:00
parent 6b33d77c4b
commit feb400081b

View file

@ -34,9 +34,10 @@ for rev; do
tag=
case "$rev" in
trunk | branches/* | tags/*)
url=$SVNURL/rev;;
url=$SVNURL/$rev;;
stable)
url=$SVNURL/brances/$(svn ls $SVNURL/branches | grep '^ruby_[0-9]_[0-9]/' | tail -1);;
url=$SVNURL/branches
url=/$(svn ls $url | grep '^ruby_[0-9]_[0-9]/' | tail -1);;
*.*.*-p* | *.*.*-*)
tag=${rev##*-}; url=${rev/-p/_}; url=${url/-/_}; url=$SVNURL/tags/v${url//./_};;
*.*)