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.
2 parents 9b97ade + 961ff59 commit f3fefd7Copy full SHA for f3fefd7
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