File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -89,34 +89,41 @@ module.exports = function(grunt) {
89
89
shell : {
90
90
npm : {
91
91
command : 'npm publish' ,
92
- stdout : true
92
+ stdout : true ,
93
+ stderr : true
93
94
} ,
94
95
clone : {
95
96
command : 'git clone git@github.com:thedersen/thedersen.github.com.git' ,
96
- stdout : true
97
+ stdout : true ,
98
+ stderr : true
97
99
} ,
98
100
copyDocco : {
99
101
command : 'cp docs/backbone-validation.html thedersen.github.com/projects/backbone-validation/docs/index.html' ,
100
- stdout : true
102
+ stdout : true ,
103
+ stderr : true
101
104
} ,
102
105
copyCss : {
103
106
command : 'cp docs/docco.css thedersen.github.com/projects/backbone-validation/docs/docco.css' ,
104
- stdout : true
107
+ stdout : true ,
108
+ stderr : true
105
109
} ,
106
110
copyExamples : {
107
111
command : 'cp -rf examples/ thedersen.github.com/projects/backbone-validation/examples/' ,
108
- stdout : true
112
+ stdout : true ,
113
+ stderr : true
109
114
} ,
110
115
push : {
111
116
command : 'git commit -am "Updated docs for Backbone.Validation" && git push origin master' ,
112
117
stdout : true ,
118
+ stderr : true
113
119
execOptions : {
114
120
cwd : 'thedersen.github.com'
115
121
}
116
122
} ,
117
123
cleanup : {
118
124
command : 'rm -rf thedersen.github.com' ,
119
- stdout : true
125
+ stdout : true ,
126
+ stderr : true
120
127
}
121
128
}
122
129
} ) ;
You can’t perform that action at this time.
0 commit comments