Skip to content

Commit

Permalink
No more svn version numbers to rely on, use timestamps instead
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed May 11, 2008
1 parent 5d9c602 commit f1b6e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pushgems.rb
@@ -1,7 +1,7 @@
#!/usr/bin/env ruby

unless ARGV.first == "no_build"
build_number = build_number = `svn log -q -rhead http://dev.rubyonrails.org/svn/rails`.scan(/r([0-9]*)/).first.first.to_i
build_number = Time.now.strftime("%Y%m%d%H%M%S").to_i
end

%w( activeresource actionmailer actionpack activerecord railties activesupport ).each do |pkg|
Expand Down

0 comments on commit f1b6e1a

Please sign in to comment.