Fix #18244 Support CRLF build.gradle for Linking
Summary: Fix for #18244 Add support for build.gradle with CRLF based line ending when running react-native link <!-- Thank you for sending the PR! We appreciate you spending the time to work on these changes. Help us understand your motivation by explaining why you decided to make this change. You can learn more about contributing to React Native here: http://facebook.github.io/react-native/docs/contributing.html Happy contributing! --> `react native link` fails if andorid/app/build.gradle has CRLF based line endings. Minor 3 character code change. Ran `react native link` on Windows and Mac to verify. None <!-- Help reviewers and the release process by writing your own release notes **INTERNAL and MINOR tagged notes will not be included in the next version's final release notes.** CATEGORY [----------] TYPE [ CLI ] [-------------] LOCATION [ DOCS ] [ BREAKING ] [-------------] [ GENERAL ] [ BUGFIX ] [-{Component}-] [ INTERNAL ] [ ENHANCEMENT ] [ {File} ] [ IOS ] [ FEATURE ] [ {Directory} ] |-----------| [ ANDROID ] [ MINOR ] [ {Framework} ] - | {Message} | [----------] [-------------] [-------------] |-----------| [CATEGORY] [TYPE] [LOCATION] - MESSAGE EXAMPLES: [IOS] [BREAKING] [FlatList] - Change a thing that breaks other things [ANDROID] [BUGFIX] [TextInput] - Did a thing to TextInput [CLI] [FEATURE] [local-cli/info/info.js] - CLI easier to do things with [DOCS] [BUGFIX] [GettingStarted.md] - Accidentally a thing/word [GENERAL] [ENHANCEMENT] [Yoga] - Added new yoga thing/position [INTERNAL] [FEATURE] [./scripts] - Added thing to script that nobody will see --> [CLI] [BUGFIX] [local-cli/link/android/patches/makeBuildPath.js] - Support CRLF line endings Closes https://github.com/facebook/react-native/pull/18245 Differential Revision: D8044774 Pulled By: hramos fbshipit-source-id: 93fad3db7022784ee949936777aa5ac25e3a64a3
This commit is contained in:
parent
23741470ca
commit
843cfc3b20
|
@ -17,7 +17,7 @@ module.exports = function makeBuildPatch(name) {
|
|||
|
||||
return {
|
||||
installPattern,
|
||||
pattern: /[^ \t]dependencies {\n/,
|
||||
patch: ` compile project(':${normalizedProjectName}')\n`,
|
||||
pattern: /[^ \t]dependencies {(\r\n|\n)/,
|
||||
patch: ` compile project(':${normalizedProjectName}')\n`
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue