From b12dcddae875068c7065ccfa03ab4c3508d848ea Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Sat, 14 Jan 2012 18:28:12 +0100 Subject: [PATCH] fix dependencies again --- lib/motion/project/builder.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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