diff --git a/package.json b/package.json index c0f23cc..d812f38 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zowe-cli-cics-deploy-plugin", - "version": "1.1.1", + "version": "1.1.2", "description": "IBM CICS Bundle generation and deployment for Zowe CLI", "repository": { "type": "git", diff --git a/src/api/BundleContent/Manifest.ts b/src/api/BundleContent/Manifest.ts index 679be5e..ea629c9 100644 --- a/src/api/BundleContent/Manifest.ts +++ b/src/api/BundleContent/Manifest.ts @@ -198,7 +198,7 @@ export class Manifest { * * @returns {object} * @throws ImperativeError - * @memberof Manifest + * @memberof Manifest */ public validate() { if (!this.manifestExists) { @@ -388,7 +388,8 @@ export class Manifest { try { // Reading the file worked, so convert the contents into a JSON Object - this.manifestAsJson = XMLParser.parse(xmltext, {ignoreAttributes: false, attributeNamePrefix: "", trimValues: true}); + const parser = new XMLParser(); + this.manifestAsJson = parser.parse(xmltext, {ignoreAttributes: false, attributeNamePrefix: "", trimValues: true}); } catch (exception) {