summaryrefslogtreecommitdiff
path: root/tool/make-snapshot
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-20 07:39:32 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-20 07:39:32 +0000
commit51b72c10816af2791a7f89ec541f140a6b3fc447 (patch)
treea957464b0296925ad853bef9e9ed67a612ae9774 /tool/make-snapshot
parente62d2cb80c491a4337c1dfc6f580d06ea66b557e (diff)
parente1a45b10b6165c8fec505180a52c4ce58fb21e91 (diff)
add tag v1_9_0_2v1_9_0_2
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_9_0_2@17482 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/make-snapshot')
-rwxr-xr-xtool/make-snapshot5
1 files changed, 3 insertions, 2 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index 71c83956b4..92a30323fe 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -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//./_};;
*.*)