Skip to content

Commit

Permalink
Add stderr for grunt shell task
Browse files Browse the repository at this point in the history
  • Loading branch information
pragmaticivan committed Apr 7, 2014
1 parent e3032aa commit ad820b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,14 +327,16 @@ module.exports = function(grunt) {
theme_alfred: {
command: '[ -d "/Applications/Alfred 2.app" ] && open <%= config.themes.path_dracula %>/alfred/Dracula.alfredappearance || echo "Alfred App is not installed"',
options: {
stdout: true
stdout: true,
stderr: true
}
},

theme_iterm: {
command: '[ -d "/Applications/iTerm.app" ] && open <%= config.themes.path_dracula %>/iterm/Dracula.itermcolors || echo "iTerm App is not installed"',
options: {
stdout: true
stdout: true,
stderr: true
}
},

Expand Down

0 comments on commit ad820b2

Please sign in to comment.