Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to React Native 0.64.x #1641

Merged
merged 11 commits into from
Apr 10, 2021
Merged
Next Next commit
Added "naive" check for cocoapods.
  • Loading branch information
nsoderstromgmp committed Aug 19, 2019
commit bbe79a7a292fa8cd711976558c4db1e9d8d94f1f
5 changes: 5 additions & 0 deletions src/commands/doctor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ module.exports = {
info('')
info(colors.cyan('iOS'))
table([[column1('xcode'), column2(xcodeVersion)]])

const cocoaPodsPath = which('pod')
const cocoaPodsVersion = await run('pod --version', { trim: true })

table([[column1('cocoapods'), column2(cocoaPodsVersion), column3(cocoaPodsPath)]])
}

// -=-=-=- windows -=-=-=-
Expand Down