Skip to content

Commit

Permalink
fixed a bug with the installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Berry committed Nov 4, 2009
1 parent fa07cd4 commit 0451e75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,16 @@ def xcopy(options)
puts "** Installing Site Config **"
src = File.join(directory, '/config/')
dst = File.join(RAILS_ROOT, '/config/')
xcopy(:source => src3, :dest => dst3, :logging => true)
xcopy(:source => src, :dest => dst, :logging => true)
src = File.join(directory, '/initializers/')
dst = File.join(RAILS_ROOT, '/config/initializers/')
xcopy(:source => src3, :dest => dst3, :logging => true)
xcopy(:source => src, :dest => dst, :logging => true)
puts "** Successfully Installed Site Config **"

puts "** Installing Helpers **"
src = File.join(directory, '/app/helpers/')
dst = File.join(RAILS_ROOT, '/helpers/')
src = File.join(directory, '/helpers/')
dst = File.join(RAILS_ROOT, '/app/helpers/')
xcopy(:source => src, :dest => dst, :logging => true)
puts "** Successfully Installed Helpers **"

puts IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
puts IO.read(File.join(directory, 'README.rdoc'))

0 comments on commit 0451e75

Please sign in to comment.