Skip to content

Commit b8be281

Browse files
Fix spot where return is inexplicably used instead of newline when generating files.
Fixes #6.
1 parent eda7c6a commit b8be281

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BuildSettingExtractor/BuildSettingExtractor.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ - (NSString *)stringRepresentationOfBuildSettings:(NSDictionary *)buildSettings
206206
}
207207

208208
if ([value isKindOfClass:[NSString class]]) {
209-
[string appendFormat:@"%@ = %@\r", key, value];
209+
[string appendFormat:@"%@ = %@\n", key, value];
210210

211211
} else if ([value isKindOfClass:[NSArray class]]) {
212-
[string appendFormat:@"%@ = %@\r", key, [value componentsJoinedByString:@" "]];
212+
[string appendFormat:@"%@ = %@\n", key, [value componentsJoinedByString:@" "]];
213213
} else {
214214
[NSException raise:@"Should not get here!" format:@"Unexpected class: %@ in %s", [value class], __PRETTY_FUNCTION__];
215215
}

0 commit comments

Comments
 (0)