diff options
author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-28 03:44:11 +0000 |
---|---|---|
committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-28 03:44:11 +0000 |
commit | 9ce0619f24dafe72189988407d6cb1384fd6d24f (patch) | |
tree | 9c097f040d653bce1b0bec9dae017637d193334e | |
parent | 9ec77afe42cbf64bec6b3585d4db826f01ec699f (diff) |
* tool/make-snapshot.rb (package): did not accept tagnames with the
prefix "previewN"
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@19982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | tool/make-snapshot | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Oct 28 12:42:28 2008 Yuki Sonoda <[email protected]> + + * tool/make-snapshot.rb (package): did not accept tagnames with the + prefix "previewN" + Tue Oct 28 12:06:07 2008 Yuki Sonoda (Yugui) <[email protected]> * test/rubygems/test_gem.rb (@default_dir_re): considers diff --git a/tool/make-snapshot b/tool/make-snapshot index 7ad64bd55d..cb12c879ee 100755 --- a/tool/make-snapshot +++ b/tool/make-snapshot @@ -56,7 +56,7 @@ def package(rev, destdir) when /\Astable\z/ url = SVNURL + "branches/" url = url + `svn ls #{url}`[/.*^(ruby_\d+_\d+)\//m, 1] - when /\A(.*)\.(.*)\.(.*)-(p)?(.*)/ + when /\A(.*)\.(.*)\.(.*)-((?!preview)p)?(.*)/ patchlevel = !!$4 tag = "#{$4}#{$5}" url = SVNURL + "tags/v#{$1}_#{$2}_#{$3}_#{$5}" |