mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Use copy instead of export for release
This commit is contained in:
parent
1156bbc06c
commit
cf0467c642
1 changed files with 5 additions and 2 deletions
|
@ -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`
|
||||
|
|
Loading…
Reference in a new issue