diff --git a/lib/motion/project/builder.rb b/lib/motion/project/builder.rb index 9dce4e43..eba13f15 100644 --- a/lib/motion/project/builder.rb +++ b/lib/motion/project/builder.rb @@ -104,7 +104,7 @@ module Motion; module Project; sleep objs = [] while path = queue.shift - objs.unshift(build_file.call(path)) + objs << build_file.call(path) end queue.concat(objs) end