From 334cb67f14930eda2cb6d2dd5e2eedeb7c37042c Mon Sep 17 00:00:00 2001 From: Dimitar Kerezov Date: Mon, 12 Mar 2018 16:39:10 +0200 Subject: [PATCH] fix: pass all args to installapplication Pass all arguments to install application - during cloud build the package file's location may already be known. --- lib/services/platform-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/platform-service.ts b/lib/services/platform-service.ts index 0eaea50425..e995858eab 100644 --- a/lib/services/platform-service.ts +++ b/lib/services/platform-service.ts @@ -518,7 +518,7 @@ export class PlatformService extends EventEmitter implements IPlatformService { } if (deployInfo.deployOptions.forceInstall || shouldBuild || (await this.shouldInstall(device, deployInfo.projectData, buildConfig))) { - await this.installApplication(device, buildConfig, deployInfo.projectData); + await this.installApplication(device, buildConfig, deployInfo.projectData, installPackageFile, deployInfo.outputPath); } else { this.$logger.out("Skipping install."); }