Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 948
fix: init uses yarn assuming version > 1.x#2329
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -11,7 +11,7 @@ import path from 'path'; | ||
| import {unixifyPaths} from '@react-native-community/cli-tools'; | ||
| export default function findManifest(folder: string) { | ||
| let manifestPaths = glob.sync(path.join('**', 'AndroidManifest.xml'), { | ||
| let manifestPaths = glob.sync('**/AndroidManifest.xml', { | ||
ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
| ||
| cwd: unixifyPaths(folder), | ||
| ignore: [ | ||
| 'node_modules/**', | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was spamming the logs with false positives on the CI E2E tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know that some time ago we hit the issue where commands were failing and
execawhere reporting status codes asundefined, hopefully this change will catch all situations when there's a failure.More details: #2152