Skip to content

Commit 334cb67

Browse files
fix: pass all args to installapplication
Pass all arguments to install application - during cloud build the package file's location may already be known.
1 parent 5f2d77b commit 334cb67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/platform-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ export class PlatformService extends EventEmitter implements IPlatformService {
518518
}
519519

520520
if (deployInfo.deployOptions.forceInstall || shouldBuild || (await this.shouldInstall(device, deployInfo.projectData, buildConfig))) {
521-
await this.installApplication(device, buildConfig, deployInfo.projectData);
521+
await this.installApplication(device, buildConfig, deployInfo.projectData, installPackageFile, deployInfo.outputPath);
522522
} else {
523523
this.$logger.out("Skipping install.");
524524
}

0 commit comments

Comments
 (0)