aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index ced9d2c33..38f516bb0 100755
--- a/install
+++ b/install
@@ -83,7 +83,7 @@ def git
# Github only supports HTTPS fetches on 1.7.10 or later:
# https://help.github.com/articles/https-cloning-errors
`#{@git} --version` =~ /git version (\d\.\d+\.\d+)/
- return if $1.nil? or $1 < "1.7.10"
+ return if $1.nil? or $1.extend(Version) < "1.7.10"
@git
end