We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda7c6a commit b8be281Copy full SHA for b8be281
BuildSettingExtractor/BuildSettingExtractor.m
@@ -206,10 +206,10 @@ - (NSString *)stringRepresentationOfBuildSettings:(NSDictionary *)buildSettings
206
}
207
208
if ([value isKindOfClass:[NSString class]]) {
209
- [string appendFormat:@"%@ = %@\r", key, value];
+ [string appendFormat:@"%@ = %@\n", key, value];
210
211
} else if ([value isKindOfClass:[NSArray class]]) {
212
- [string appendFormat:@"%@ = %@\r", key, [value componentsJoinedByString:@" "]];
+ [string appendFormat:@"%@ = %@\n", key, [value componentsJoinedByString:@" "]];
213
} else {
214
[NSException raise:@"Should not get here!" format:@"Unexpected class: %@ in %s", [value class], __PRETTY_FUNCTION__];
215
0 commit comments