1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-25 11:13:52 +02:00

Moved setup.js to end of build file.

This commit is contained in:
Steve Heffernan 2012-01-14 18:14:17 -08:00
parent 4f34034c51
commit a6b549813e

View File

@ -73,11 +73,12 @@ namespace :build do
end
Dir.foreach('src') do |item|
next if (['.', '..', '.DS_Store', '_end.js'] + first_files).include? item
next if (['.', '..', '.DS_Store', 'setup.js', '_end.js'] + first_files).include? item
combined << File.read("src/#{item}")
end
combined << File.read("flash/swfobject.js")
combined << File.read("src/setup.js")
combined << File.read("src/_end.js")
Rake::Log["Adding version number"]