Various fixes...

- Accidentally deleted the Jakefile. It has been restored, and fixed the case where it would put a symlink to XcodeCapp.app within XcodeCapp.app.
- Minor changes to remove compiler warnings.
This commit is contained in:
Aparajita Fishman
2013-04-24 16:01:55 -04:00
parent b38f845643
commit 73d62029ba
3 changed files with 57 additions and 2 deletions
+8 -2
View File
@@ -740,7 +740,10 @@ NSArray *XCCDefaultIgnoredPathRegexes = nil;
if (pbxArguments)
{
DLog(@"%@ Running update PBX task...", NSStringFromSelector(_cmd));
NSDictionary *taskResult = [self runTaskWithLaunchPath:self.shellPath arguments:pbxArguments returnType:kTaskReturnTypeStdOut];
NSDictionary *taskResult;
taskResult = [self runTaskWithLaunchPath:self.shellPath arguments:pbxArguments returnType:kTaskReturnTypeStdOut];
DLog(@"%@ Update PBX Task result/response: %@/%@", NSStringFromSelector(_cmd), taskResult[@"status"], taskResult[@"response"]);
}
@@ -838,7 +841,10 @@ NSArray *XCCDefaultIgnoredPathRegexes = nil;
projectSourcePath]
];
NSDictionary *taskResult = [self runTaskWithLaunchPath:self.shellPath arguments:pbxArguments returnType:kTaskReturnTypeStdOut];
NSDictionary *taskResult;
taskResult = [self runTaskWithLaunchPath:self.shellPath arguments:pbxArguments returnType:kTaskReturnTypeStdOut];
DLog(@"%@ PBX Reference removal status/response: %@/%@", NSStringFromSelector(_cmd), taskResult[@"status"], taskResult[@"response"]);
}