Skip to content

Commit 2ac05bf

Browse files
fix run pip local message (#280)
1 parent 4f568c1 commit 2ac05bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/interface/cli/commands/pipeline/run.local.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class RunLocalCommand extends RunBaseCommand {
132132
resolve(0);
133133
return;
134134
}
135-
eventEmitter.on('stream', (stream) => {
135+
eventEmitter.on('stream', (stream) => {
136136
stream.on('data', (chunk) => {
137137
const line = chunk.toString();
138138
if (line.indexOf(`error: ${EngineErrorPrefix}`) !== -1) {
@@ -145,7 +145,7 @@ class RunLocalCommand extends RunBaseCommand {
145145
} else {
146146
console.log(chalk.red(`Error when running pipeline: ${error}`));
147147
}
148-
148+
149149
this.status = 'Error';
150150
resolve(1);
151151
}
@@ -181,7 +181,7 @@ class RunLocalCommand extends RunBaseCommand {
181181
if (this.status === 'Error') {
182182
console.log(chalk.red('Failed to execute the pipeline'));
183183
} else {
184-
console.log(chalk.green('Pipeline executed succfully'));
184+
console.log(chalk.green('Pipeline executed successfully'));
185185
}
186186
}
187187
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.11.1",
3+
"version": "0.11.2",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)