We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--device
1 parent 98d2842 commit b90f746Copy full SHA for b90f746
packages/cli-platform-ios/src/commands/runIOS/index.ts
@@ -647,10 +647,10 @@ export default {
647
'"iPhone 15 (17.0)"',
648
},
649
{
650
- name: '--device <string>',
+ name: '--device [string]', // here we're intentionally using [] over <> to make passed value optional to allow users to run only on physical devices
651
description:
652
- 'Explicitly set the device to use by name. The value is not required ' +
653
- 'if you have a single device connected.',
+ 'Explicitly set the device to use by name. If the value is not provided,' +
+ 'the app will run on the first available physical device.',
654
655
656
name: '--udid <string>',
0 commit comments