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

Commit

Permalink
Merge pull request #261 from benoitsan/master
Browse files Browse the repository at this point in the history
clean the build directory when executing xcodebuild for issue #250
  • Loading branch information
supermarin committed May 22, 2015
2 parents 233e1e7 + 2c03f8f commit 22c6a9a
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 22c6a9a

Please sign in to comment.