File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -577,8 +577,8 @@ target group of CICS regions\.
577
577
578
578
### Examples
579
579
580
- * Undeploy a CICS bundle by using the default cics-deploy
581
- profile :
580
+ * Undeploy a CICS bundle by using the default cics-deploy and
581
+ zosmf profiles :
582
582
583
583
* `$ zowe cics-deploy undeploy bundle --name EXAMPLE`
584
584
Original file line number Diff line number Diff line change @@ -676,7 +676,7 @@ export class BundlePusher {
676
676
677
677
// Something went wrong, suggest a command that can be run to figure out more.
678
678
if ( msgBuffer === "" ) {
679
- this . issueMessage ( "An attempt to query the remote CICSplex using the cics plug-in has failed." ) ;
679
+ this . issueMessage ( "An attempt to query the remote CICSplex using the cics plug-in has failed.\n " ) ;
680
680
}
681
681
682
682
return msgBuffer ;
@@ -782,8 +782,9 @@ export class BundlePusher {
782
782
const applid = outputRecord . applid . padEnd ( MAX_LENGTH , " " ) ;
783
783
const jobid = outputRecord . jobid . padEnd ( MAX_LENGTH , " " ) ;
784
784
const jobname = outputRecord . jobname . padEnd ( MAX_LENGTH , " " ) ;
785
+ const sysname = outputRecord . mvssysname . padEnd ( MAX_LENGTH , " " ) ;
785
786
786
- return msgBuffer + " Applid: " + applid + " jobname: " + jobname + " jobid: " + jobid + "\n" ;
787
+ return msgBuffer + " Applid: " + applid + " jobname: " + jobname + " jobid: " + jobid + " sysname: " + sysname + " \n";
787
788
}
788
789
789
790
private reportNODEJSAPPData ( outputRecord : any , msgBuffer : string ) {
You can’t perform that action at this time.
0 commit comments