File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
lib/interface/cli/commands/pipeline Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ class RunLocalCommand extends RunBaseCommand {
132
132
resolve ( 0 ) ;
133
133
return ;
134
134
}
135
- eventEmitter . on ( 'stream' , ( stream ) => {
135
+ eventEmitter . on ( 'stream' , ( stream ) => {
136
136
stream . on ( 'data' , ( chunk ) => {
137
137
const line = chunk . toString ( ) ;
138
138
if ( line . indexOf ( `error: ${ EngineErrorPrefix } ` ) !== - 1 ) {
@@ -145,7 +145,7 @@ class RunLocalCommand extends RunBaseCommand {
145
145
} else {
146
146
console . log ( chalk . red ( `Error when running pipeline: ${ error } ` ) ) ;
147
147
}
148
-
148
+
149
149
this . status = 'Error' ;
150
150
resolve ( 1 ) ;
151
151
}
@@ -181,7 +181,7 @@ class RunLocalCommand extends RunBaseCommand {
181
181
if ( this . status === 'Error' ) {
182
182
console . log ( chalk . red ( 'Failed to execute the pipeline' ) ) ;
183
183
} else {
184
- console . log ( chalk . green ( 'Pipeline executed succfully ' ) ) ;
184
+ console . log ( chalk . green ( 'Pipeline executed successfully ' ) ) ;
185
185
}
186
186
}
187
187
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codefresh" ,
3
- "version" : " 0.11.1 " ,
3
+ "version" : " 0.11.2 " ,
4
4
"description" : " Codefresh command line utility" ,
5
5
"main" : " index.js" ,
6
6
"preferGlobal" : true ,
You can’t perform that action at this time.
0 commit comments