From c47ce902c3f3fda8af234e0807b8d1af112d06b3 Mon Sep 17 00:00:00 2001 From: tiagobcx Date: Thu, 18 Nov 2021 15:34:53 +0000 Subject: [PATCH] Fixing the incorrect cast to CxProject of the project branch --- src/main/wrapper/CxWrapper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/wrapper/CxWrapper.ts b/src/main/wrapper/CxWrapper.ts index 73ea76f1..5c3a6643 100644 --- a/src/main/wrapper/CxWrapper.ts +++ b/src/main/wrapper/CxWrapper.ts @@ -135,7 +135,7 @@ export class CxWrapper { const commands: string[] = [CxConstants.CMD_PROJECT , CxConstants.SUB_CMD_BRANCHES, CxConstants.PROJECT_ID, projectId].concat(validated_filters); commands.push(...this.initializeCommands(false)); const exec = new ExecutionService(); - return await exec.executeCommands(this.config.pathToExecutable, commands, CxConstants.PROJECT_TYPE); + return await exec.executeCommands(this.config.pathToExecutable, commands); } async projectShow(projectId: string): Promise {