summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-28 03:44:11 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-28 03:44:11 +0000
commit1d4b4bb2315fc4c33f5285cb74dd1e6ae3d5ab90 (patch)
tree9c097f040d653bce1b0bec9dae017637d193334e /tool
parent1bd6fe1be2daf5c9009ddcfca57e461f60a31bee (diff)
downloadruby-1d4b4bb2315fc4c33f5285cb74dd1e6ae3d5ab90.tar.gz
ruby-1d4b4bb2315fc4c33f5285cb74dd1e6ae3d5ab90.tar.xz
ruby-1d4b4bb2315fc4c33f5285cb74dd1e6ae3d5ab90.zip
* tool/make-snapshot.rb (package): did not accept tagnames with the
prefix "previewN" git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@19982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-xtool/make-snapshot2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index 7ad64bd55..cb12c879e 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}"