diff options
author | Ibrahim Almuqrin <ialmoqren@gmail.com> | 2019-04-25 17:14:17 +0300 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-04-25 16:14:17 +0200 |
commit | adade64cda7af2bb2f23b95a57f91f7010aa0cb8 (patch) | |
tree | 3d1e413488a24d5d05dd843fc3f42a82dc9e0940 /plugins/react-native/react-native.plugin.zsh | |
parent | f46476589aa092f75f5911fa4d6f65401a8d3577 (diff) | |
download | zsh-adade64cda7af2bb2f23b95a57f91f7010aa0cb8.tar.gz zsh-adade64cda7af2bb2f23b95a57f91f7010aa0cb8.tar.bz2 zsh-adade64cda7af2bb2f23b95a57f91f7010aa0cb8.zip |
react-native: use new iOS simulator names (#7717)
The simulator names changed after updating to Xcode 10.2 (iOS 12.2 SDK)
I don't know how to prevent this change from affecting those who didn't update yet, but it worth noting that updating is now required in order to submit iOS apps to the App Store.
Diffstat (limited to 'plugins/react-native/react-native.plugin.zsh')
-rw-r--r-- | plugins/react-native/react-native.plugin.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/react-native/react-native.plugin.zsh b/plugins/react-native/react-native.plugin.zsh index a4092a694..f3ef09124 100644 --- a/plugins/react-native/react-native.plugin.zsh +++ b/plugins/react-native/react-native.plugin.zsh @@ -15,9 +15,9 @@ alias rnios8='react-native run-ios --simulator "iPhone 8"' alias rnios8p='react-native run-ios --simulator "iPhone 8 Plus"' alias rniosse='react-native run-ios --simulator "iPhone SE"' alias rniosx='react-native run-ios --simulator "iPhone X"' -alias rniosxs='react-native run-ios --simulator "iPhone XS"' -alias rniosxsm='react-native run-ios --simulator "iPhone XS Max"' -alias rniosxr='react-native run-ios --simulator "iPhone XR"' +alias rniosxs='react-native run-ios --simulator "iPhone Xs"' +alias rniosxsm='react-native run-ios --simulator "iPhone Xs Max"' +alias rniosxr='react-native run-ios --simulator "iPhone Xʀ"' alias rnipad2='react-native run-ios --simulator "iPad 2"' alias rnipadr='react-native run-ios --simulator "iPad Retina"' |