Skip to content

Commit 2c708a2

Browse files
Merge pull request #3446 from NativeScript/kerezov/install-args
fix: pass all args to installapplication
2 parents 7f02140 + 334cb67 commit 2c708a2

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)