Revision
2896
Author
lsansonetti@apple.com
Date
2009-10-24 20:22:59 -0700 (Sat, 24 Oct 2009)

Log Message

oops

Modified Paths

Diff

Modified: MacRuby/trunk/rakelib/builder.rake (2895 => 2896)


--- MacRuby/trunk/rakelib/builder.rake	2009-10-25 03:06:21 UTC (rev 2895)
+++ MacRuby/trunk/rakelib/builder.rake	2009-10-25 03:22:59 UTC (rev 2896)
@@ -406,7 +406,7 @@
   desc "Touch .rbo files to ignore their build"
   task :touch do
     files = ["*.rbo", "lib/**/*.rbo"]
-    files.each { |pat| Dir.glob(pat) }.flatten.each { |p| sh "/usr/bin/touch #{p}" }
+    files.map { |pat| Dir.glob(pat) }.flatten.each { |p| sh "/usr/bin/touch #{p}" }
   end
 end