From 52d06e40a21cb159eac5fc4bf2e2b6875a63af92 Mon Sep 17 00:00:00 2001 From: Christian Frichot Date: Sat, 3 Mar 2012 22:44:05 +0800 Subject: [PATCH] Removed the dev/null output in the Rake Install task Issue #629 --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 96aa5c920..06b2dc27a 100644 --- a/Rakefile +++ b/Rakefile @@ -56,7 +56,7 @@ task :msf => ["install", "msf_install"] do end task :install do - sh "export BEEF_TEST=true;bundle install > /dev/null" + sh "export BEEF_TEST=true;bundle install" end ################################