From 843bb9739d4afda7bd2f8e8ee471ea1c67661f12 Mon Sep 17 00:00:00 2001 From: Lyle Johnson <lyle@lylejohnson.name> Date: Fri, 6 Mar 2009 14:25:32 -0600 Subject: [PATCH] Correct dependency of :test task on :build task --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index a40c1ce..51bd60d 100755 --- a/Rakefile +++ b/Rakefile @@ -26,7 +26,7 @@ Hoe.new("FXRuby", PKG_VERSION) do |p| end # Make sure extension is built before tests are run -task :test => build +task :test => [:build] # ... project specific tasks ... -- GitLab