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 9b97ade commit 961ff59Copy full SHA for 961ff59
SCStringsUtility/SCStringsController.m
@@ -246,7 +246,7 @@ -(void)executeGenStringsAtPath:(NSString*)path withRoutine:(NSString*)routine po
246
247
NSString *tempFilePath = NSTemporaryDirectory();
248
249
- NSString *argument = [NSString stringWithFormat:@"find ./ -name *.m -print0| xargs -0 genstrings -o %@", tempFilePath];
+ NSString *argument = [NSString stringWithFormat:@"find ./ -name *.m -print0 -o -name *.swift -print0 | xargs -0 genstrings -o %@", tempFilePath];
250
if([routine length]) argument = [argument stringByAppendingString:[NSString stringWithFormat:@" -s %@", routine]];
251
if(!positionalParameters) argument = [argument stringByAppendingString:@" -noPositionalParameters"];
252
0 commit comments