File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,7 @@ export class BundleDeployer {
263
263
this . jobId = statusWords [ 2 ] ;
264
264
status . statusMessage += " (Processing DFHDPLOY " + action + " action)" ;
265
265
266
+ this . params . response . progress . endBar ( ) ;
266
267
// log the jobid for posterity
267
268
if ( this . params . arguments . verbose ) {
268
269
this . params . response . console . log ( status . statusMessage + "\n" ) ;
@@ -271,6 +272,7 @@ export class BundleDeployer {
271
272
const logger = Logger . getAppLogger ( ) ;
272
273
logger . debug ( status . statusMessage ) ;
273
274
}
275
+ this . params . response . progress . startBar ( { task : status } ) ;
274
276
}
275
277
}
276
278
}
Original file line number Diff line number Diff line change @@ -251,9 +251,10 @@ export class BundlePusher {
251
251
private sshOutput ( data : string ) {
252
252
// If verbose output is requested then log SSH output directly to the console
253
253
if ( this . params . arguments . verbose ) {
254
- this . params . response . console . log ( data ) ;
254
+ this . params . response . progress . endBar ( ) ;
255
+ this . params . response . console . log ( Buffer . from ( data ) ) ;
256
+ this . params . response . progress . startBar ( { task : this . progressBar } ) ;
255
257
}
256
-
257
258
this . sshOutputText += data ;
258
259
}
259
260
You can’t perform that action at this time.
0 commit comments