mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-02 00:43:35 +00:00
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:
@@ -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"]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user