Skip to content

Commit 2d354bf

Browse files
committed
fix: respect --provision on deploy command
Currently when `tns deploy ios --provision <provision>` is executed, CLI shows a prompt for teamId as the provision option is not respected.
1 parent d5bfcb2 commit 2d354bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/helpers/deploy-command-helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class DeployCommandHelper {
5151
});
5252

5353
await this.$deployController.deploy({
54-
buildData: this.$buildDataService.getBuildData(this.$projectData.projectDir, platform, { ...this.$options, skipWatcher: !this.$options.watch }),
54+
buildData: this.$buildDataService.getBuildData(this.$projectData.projectDir, platform, { ...this.$options.argv, skipWatcher: !this.$options.watch }),
5555
deviceDescriptors
5656
});
5757
}

0 commit comments

Comments
 (0)