File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
lib/interface/cli/commands/pipeline Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ const run = new Command({
78
78
} )
79
79
. option ( 'local-volume' , {
80
80
describe : 'Use your file system as volume in local run' ,
81
- alias : 'vl ' ,
81
+ alias : 'lv ' ,
82
82
} )
83
83
. example ( 'codefresh run PIPELINE_ID | PIPELINE_NAME -b=master' , 'Defining the source control context using a branch' )
84
84
. 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({
192
192
process . exit ( 1 ) ;
193
193
}
194
194
}
195
- function onProgress ( res ) {
196
- if ( _ . get ( res , 'status' ) ) {
197
- console . log ( res . status ) ;
198
- }
195
+ function onProgress ( ) {
196
+ stream . pipe ( process . stdout ) ;
199
197
}
200
198
} ) ;
201
199
} else {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codefresh" ,
3
- "version" : " 0.9.20 " ,
3
+ "version" : " 0.9.21 " ,
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