From d4bccd76ab9f4d153c648ca4d2cc0eb6b01af000 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Thu, 10 May 2012 15:07:03 -0700 Subject: [PATCH] Don't hide bundler output [no-ci] --- middleman-core/lib/middleman-core/cli/bundler.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/middleman-core/lib/middleman-core/cli/bundler.rb b/middleman-core/lib/middleman-core/cli/bundler.rb index e57104fa..cc32e6db 100644 --- a/middleman-core/lib/middleman-core/cli/bundler.rb +++ b/middleman-core/lib/middleman-core/cli/bundler.rb @@ -12,7 +12,7 @@ module Middleman::Cli # The setup task def bundle - run('bundle install --without development test', :capture => true) + run('bundle install --without development test')#, :capture => true) end end @@ -28,7 +28,7 @@ module Middleman::Cli # The upgrade task def upgrade inside(ENV["MM_ROOT"]) do - run('bundle update', :capture => true) + run('bundle update')#, :capture => true) end end end