Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Add "client" copy to Android and iOS open option #2778

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/expo-cli/src/urlOpts.ts
Expand Up @@ -18,10 +18,10 @@ export type URLOptions = {

function addOptions(program: Command) {
program
.option('-a, --android', 'Opens your app in Expo on a connected Android device')
.option('-a, --android', 'Opens your app in Expo client on a connected Android device')
.option(
'-i, --ios',
'Opens your app in Expo in a currently running iOS simulator on your computer'
'Opens your app in Expo client in a currently running iOS simulator on your computer'
)
.option('-w, --web', 'Opens your app in a web browser')
.option(
Expand Down