Skip to content

Instantly share code, notes, and snippets.

@pieter
Created November 28, 2008 15:21
Show Gist options
  • Save pieter/30001 to your computer and use it in GitHub Desktop.
Save pieter/30001 to your computer and use it in GitHub Desktop.
diff --git a/PBGitBinary.m b/PBGitBinary.m
index 1c83683..abd44e2 100644
--- a/PBGitBinary.m
+++ b/PBGitBinary.m
@@ -37,7 +37,7 @@ + (BOOL) acceptBinary:(NSString *)path
if (!version)
return NO;
- int c = [version compare:@"1.5.4"];
+ int c = [version compare:@"1.5.5"];
if (c == NSOrderedSame || c == NSOrderedDescending) {
gitPath = path;
return YES;
@@ -65,7 +65,7 @@ + (void) initialize
return;
}
- NSLog(@"Could not find a git binary higher than version 1.5.4.");
+ NSLog(@"Could not find a git binary higher than version 1.5.5.");
}
+ (NSString *) path;
@@ -94,7 +94,7 @@ + (NSArray *) searchLocations
+ (NSString *) notFoundError
{
NSMutableString *error = [NSMutableString stringWithString:
- @"Could not find a git binary version 1.5.4 or higher.\n"
+ @"Could not find a git binary version 1.5.5 or higher.\n"
"Please make sure there is a git binary in one of the following locations:\n\n"];
for (NSString *location in [PBGitBinary searchLocations]) {
[error appendFormat:@"\t%@\n", location];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment