Skip to content

Commit b460f24

Browse files
Merge pull request #255 from pcoop/branch1
Add sysname to output
2 parents 0e0acbc + c056ef0 commit b460f24

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docs/pages/cdp/CLIReadme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -577,8 +577,8 @@ target group of CICS regions\.
577577

578578
### Examples
579579

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:
582582

583583
* `$ zowe cics-deploy undeploy bundle --name EXAMPLE`
584584

src/api/BundlePush/BundlePusher.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ export class BundlePusher {
676676

677677
// Something went wrong, suggest a command that can be run to figure out more.
678678
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");
680680
}
681681

682682
return msgBuffer;
@@ -782,8 +782,9 @@ export class BundlePusher {
782782
const applid = outputRecord.applid.padEnd(MAX_LENGTH, " ");
783783
const jobid = outputRecord.jobid.padEnd(MAX_LENGTH, " ");
784784
const jobname = outputRecord.jobname.padEnd(MAX_LENGTH, " ");
785+
const sysname = outputRecord.mvssysname.padEnd(MAX_LENGTH, " ");
785786

786-
return msgBuffer + " Applid: " + applid + " jobname: " + jobname + " jobid: " + jobid + "\n";
787+
return msgBuffer + " Applid: " + applid + " jobname: " + jobname + " jobid: " + jobid + " sysname: " + sysname + "\n";
787788
}
788789

789790
private reportNODEJSAPPData(outputRecord: any, msgBuffer: string) {

0 commit comments

Comments
 (0)