We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9a6f12 commit 5ba5a37Copy full SHA for 5ba5a37
src/actions/PlanningActions.ts
@@ -114,9 +114,7 @@ export class PlanningActions {
114
115
// majorVers optional or def to DEF_ZOWE_MAJOR_VERS
116
public static async getZoweFullVersion(majorVersion?: number): Promise<IResponse> {
117
- console.log("zowe version in getZoweFullVersion method received before the promise ", majorVersion);
118
return new Promise<IResponse>((resolve, reject) => {
119
- console.log("zowe version in getZoweFullVersion method received as ", majorVersion);
120
https.get(`https://raw.githubusercontent.com/zowe/zowe-install-packaging/v${majorVersion || DEF_ZOWE_MAJOR_VERS}.x/master/manifest.json.template`, (res) => {
121
let data = '';
122
0 commit comments