[前][次][番号順一覧][スレッド一覧]

ruby-changes:5959

From: nobu <ko1@a...>
Date: Fri, 20 Jun 2008 12:20:16 +0900 (JST)
Subject: [ruby-changes:5959] Ruby:r17467 (trunk): * tool/make-snapshot: fixed typo.

nobu	2008-06-20 12:19:38 +0900 (Fri, 20 Jun 2008)

  New Revision: 17467

  Modified files:
    trunk/tool/make-snapshot

  Log:
    * tool/make-snapshot: fixed typo.

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/tool/make-snapshot?r1=17467&r2=17466&diff_format=u

Index: tool/make-snapshot
===================================================================
--- tool/make-snapshot	(revision 17466)
+++ tool/make-snapshot	(revision 17467)
@@ -34,9 +34,10 @@
     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//./_};;
 	*.*)

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]