Skip to content

Commit

Permalink
Fix issue #48 - Fix password ask problem with stdout option
Browse files Browse the repository at this point in the history
  • Loading branch information
pragmaticivan committed Apr 7, 2014
1 parent 809140c commit c76fe15
Showing 1 changed file with 36 additions and 9 deletions.
45 changes: 36 additions & 9 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand All @@ -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: {
Expand Down

0 comments on commit c76fe15

Please sign in to comment.