Skip to content

Commit

Permalink
Use copy instead of export for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Sep 5, 2008
1 parent 1156bbc commit cf0467c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions release.rb
Expand Up @@ -3,8 +3,11 @@
VERSION = ARGV.first
PACKAGES = %w(activesupport activerecord actionpack actionmailer activeresource)

# Checkout source
# `rm -rf release && svn export http://dev.rubyonrails.org/svn/rails/trunk release`
# Copy source
`mkdir release`
(PACKAGES + %w(railties)).each do |p|
`cp -R #{p} release/#{p}`
end

# Create Rails packages
`cd release/railties && rake template=jamis package`
Expand Down

0 comments on commit cf0467c

Please sign in to comment.