Skip to content

Commit

Permalink
Merge pull request #160 from zowe/bugfix/installation
Browse files Browse the repository at this point in the history
Remove duplicate upload logic, fix unpax not showing complete on ui, fix iniit mvs
  • Loading branch information
DivergentEuropeans authored May 29, 2024
2 parents e8ae277 + 2e20b1c commit 0bf520b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/actions/InstallationHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ class Installation {
return {status: false, details: `Error downloading pax: ${download.details}`};
}

if(!upload.status){
return {status: false, details: `Error uploading pax: ${upload.details}`};
}

if (!SMPE_INSTALL) {
console.log("unpaxing...");
unpax = await this.unpax(connectionArgs, installationArgs.installationDir);
Expand Down

0 comments on commit 0bf520b

Please sign in to comment.