Skip to content

Commit

Permalink
Change xcode failure to xcode warning
Browse files Browse the repository at this point in the history
Reviewed By: lawrencelomax

Differential Revision: D26727043

fbshipit-source-id: 38d4b1a73a511057896512807c1303091de9ca73
  • Loading branch information
c-ryan747 authored and facebook-github-bot committed Mar 1, 2021
1 parent 1279ca3 commit 9e03d47
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions idb_companion/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -564,11 +564,12 @@ int main(int argc, const char *argv[]) {
[logger.info logFormat:@"Invoked with args=%@ env=%@", [FBCollectionInformation oneLineDescriptionFromArray:NSProcessInfo.processInfo.arguments], EnvDescription()];
NSError *error = nil;

// Check that xcode-select returns a valid path
// Check that xcode-select returns a valid path, throw a big
// warning if not
[FBXcodeDirectory.xcodeSelectFromCommandLine.xcodePath await:&error];
if (error) {
[logger.error log:error.localizedDescription];
return 1;
error = nil;
}

FBFuture<NSNumber *> *signalled = [FBFuture race:@[
Expand Down

0 comments on commit 9e03d47

Please sign in to comment.