about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index f80d5d9..f6311b0 100644
--- a/Rakefile
+++ b/Rakefile
@@ -118,7 +118,9 @@ end
 def sub_project(project, *targets)
   targets.each do |target|
     Dir.chdir "projects/#{project}" do
-      sh %{rake --trace #{target.to_s} }
+      unless RUBY_PLATFORM =~ /mswin/
+        sh %{rake --trace #{target.to_s} }
+      end
     end
   end
 end