9 lines
335 B
Ruby
9 lines
335 B
Ruby
# Install hook code here
|
|
unless defined?(RAILS_ROOT)
|
|
$stderr.puts "$0 must be run from RAILS_ROOT with -rconfig/boot"
|
|
exit
|
|
end
|
|
|
|
require 'fileutils'
|
|
FileUtils.rm_rf(RAILS_ROOT + '/script/process') # remove the old stubs first
|
|
FileUtils.cp_r(RAILS_ROOT + '/vendor/plugins/irs_process_scripts/script', RAILS_ROOT + '/script/process')
|