From bbca718324980997350dee308f273e4643f1edb0 Mon Sep 17 00:00:00 2001 From: Enno Weichert Date: Mon, 11 Feb 2013 15:59:40 +0100 Subject: [PATCH] Load custom rake scripts from sub-directories to allow using sub-modules --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3abf4e919a..ed543f5bbd 100644 --- a/Rakefile +++ b/Rakefile @@ -305,4 +305,4 @@ def get_stdin(message) end #Load custom rake scripts -Dir['_rake/*.rake'].each { |r| load r } +Dir['_rake/**/*.rake'].each { |r| load r }