From f9e43895794c971062fe1d39b82529efa8e2d766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 11 Mar 2014 17:35:55 +0100 Subject: [PATCH] rake:test fix syntax check --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 9907e2b..b889197 100644 --- a/Rakefile +++ b/Rakefile @@ -2,8 +2,8 @@ COOKBOOKS = FileList[File.join("site-cookbooks", "*")] task :test do COOKBOOKS.each do |cookbook| - #sh "knife cookbook test #{File.basename(cookbook)}" - sh "foodcritic #{cookbook}" + sh "knife cookbook test '#{File.basename(cookbook)}' -o site-cookbooks" + sh "foodcritic '#{cookbook}'" end sh "rspec spec" end