Changeset 845

Show
Ignore:
Timestamp:
04/19/08 17:47:23 (4 months ago)
Author:
seancribbs
Message:

Fix problem in framework.rake when public/javascripts/admin does not exist.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/radiant/CHANGELOG

    r836 r845  
    11== Change Log 
     2 
     3=== Edge 
     4* Fix problem in framework.rake when public/javascripts/admin doesn't exist. 
     5[Sean Cribbs] 
    26 
    37=== 0.6.5 Chisel 
  • trunk/radiant/CONTRIBUTORS

    r834 r845  
    44The following people have submitted changes which have been applied to the 
    55core: 
     6 
     7=== Edge 
     8* Sean Cribbs 
    69 
    710=== 0.6.5 Chisel 
  • trunk/radiant/lib/tasks/framework.rake

    r830 r845  
    9696      desc "Update your javascripts from your current radiant install" 
    9797      task :javascripts do 
     98        FileUtils.mkdir_p("#{RAILS_ROOT}/public/javascripts/admin/") 
    9899        copy_javascripts = proc do |project_dir, scripts| 
    99100          scripts.reject!{|s| File.basename(s) == 'application.js'} if File.exists?(project_dir + 'application.js')