Skip to content

Commit e27dc1c

Browse files
Return back print of local engine
1 parent 50027e8 commit e27dc1c

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const run = new Command({
7878
})
7979
.option('local-volume', {
8080
describe: 'Use your file system as volume in local run',
81-
alias: 'vl',
81+
alias: 'lv',
8282
})
8383
.example('codefresh run PIPELINE_ID | PIPELINE_NAME -b=master', 'Defining the source control context using a branch')
8484
.example('codefresh run PIPELINE_ID | PIPELINE_NAME -s=52b992e783d2f84dd0123c70ac8623b4f0f938d1', 'Defining the source control context using a commit')
@@ -192,10 +192,8 @@ const run = new Command({
192192
process.exit(1);
193193
}
194194
}
195-
function onProgress(res) {
196-
if (_.get(res, 'status')) {
197-
console.log(res.status);
198-
}
195+
function onProgress() {
196+
stream.pipe(process.stdout);
199197
}
200198
});
201199
} else {

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.9.20",
3+
"version": "0.9.21",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)