diff --git a/Gruntfile.js b/Gruntfile.js index d94787c..1a4997f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -313,15 +313,24 @@ module.exports = function(grunt) { shell: { osx: { - command: 'source <%= config.osx.path_osx %>' + command: 'source <%= config.osx.path_osx %>', + options: { + stdout: true + } }, z: { - command: 'touch <%= config.z.path_z_system %>' + command: 'touch <%= config.z.path_z_system %>', + options: { + stdout: true + } }, zsh: { - command: 'chsh -s /bin/zsh' + command: 'chsh -s /bin/zsh', + options: { + stdout: true + } }, theme_alfred: { @@ -333,27 +342,45 @@ module.exports = function(grunt) { }, node_latest: { - command: 'sudo n latest' + command: 'sudo n latest', + options: { + stdout: true + } }, node_stable: { - command: 'sudo n stable' + command: 'sudo n stable', + options: { + stdout: true + } }, ruby_compass: { - command: 'sudo gem install compass' + command: 'sudo gem install compass', + options: { + stdout: true + } }, ruby_jekyll: { - command: 'sudo gem install jekyll' + command: 'sudo gem install jekyll', + options: { + stdout: true + } }, ruby_update: { - command: 'sudo gem update --system' + command: 'sudo gem update --system', + options: { + stdout: true + } }, brew: { - command: 'ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"' + command: 'ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"', + options: { + stdout: true + } }, brew_tig: {