Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
3a8ee229
Commit
3a8ee229
authored
May 07, 2013
by
Sato Hiroyuki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix check git version.
Checking is "yes" only if git version equals "1.7.10" exactly.
parent
78ff99a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
4 deletions
+22
-4
lib/tasks/gitlab/check.rake
lib/tasks/gitlab/check.rake
+22
-4
No files found.
lib/tasks/gitlab/check.rake
View file @
3a8ee229
...
...
@@ -666,14 +666,32 @@ namespace :gitlab do
end
def
check_git_version
print
"Git version >= 1.7.10 ? ... "
required_version_major
=
1
required_version_minor
=
7
required_version_patch
=
10
if
run_and_match
(
"git --version"
,
/git version 1.7.10.\d/
)
puts
"yes"
.
green
required_version
=
"%d.%d.%d"
%
[
required_version_major
,
required_version_minor
,
required_version_patch
]
print
"Git version >=
#{
required_version
}
? ... "
if
m
=
run_and_match
(
"git --version"
,
/git version ((\d+)\.(\d+)\.(\d+))/
)
current_version
=
m
[
1
]
major
=
m
[
2
].
to_i
minor
=
m
[
3
].
to_i
patch
=
m
[
4
].
to_i
unless
major
<=
required_version_major
&&
minor
<=
required_version_minor
&&
patch
<
required_version_patch
satisfying_git_version
=
true
end
else
current_version
=
"Unknown"
end
if
satisfying_git_version
puts
"yes"
.
green
else
puts
"no"
.
red
try_fixing_it
(
"Update your git to a version >=
1.7.10
"
"Update your git to a version >=
#{
required_version
}
from
#{
current_version
}
"
)
fix_and_rerun
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment