Skip to content
This repository has been archived by the owner on Sep 4, 2018. It is now read-only.

Commit

Permalink
clean the build directory when executing xcodebuild for issue #250
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitsan committed Apr 12, 2015
1 parent fdb349e commit 2c03f8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Alcatraz/Installers/ATZPluginInstaller.m
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ - (void)buildPlugin:(ATZPlugin *)plugin completion:(void (^)(NSError *))completi
}

ATZShell *shell = [ATZShell new];
[shell executeCommand:XCODE_BUILD withArguments:@[PROJECT, xcodeProjPath] completion:^(NSString *output, NSError *error) {
[shell executeCommand:XCODE_BUILD withArguments:@[@"clean", @"build", PROJECT, xcodeProjPath] completion:^(NSString *output, NSError *error) {
NSLog(@"Xcodebuild output: %@", output);
completion(error);
}];
Expand Down

0 comments on commit 2c03f8f

Please sign in to comment.