Skip to content

Commit

Permalink
Ensure stable order of Rake tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
jlnr committed Aug 28, 2014
1 parent c29d7d1 commit 8951b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def tar filename, files
sh "COPYFILE_DISABLE=true tar -czf #{filename} #{files.to_a.uniq.map { |fn| "'#{fn}'" }.join(' ')}"
end

Dir.glob('./rake/*.rb') { |task| require task }
Dir.glob('./rake/*.rb').sort.each { |task| require task }

task :swig do
sh "swig -c++ -ruby -autorename ext/gosu/gosu.swg"
Expand Down

0 comments on commit 8951b9b

Please sign in to comment.