Commit c28786ecbeb7ba2e630896b37481b918af4ed39e
1 parent
253680bb
Exists in
master
and in
4 other branches
Require gitlab-shell 1.7.6
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
doc/install/installation.md
... | ... | @@ -149,7 +149,7 @@ GitLab Shell is an ssh access and repository management software developed speci |
149 | 149 | cd gitlab-shell |
150 | 150 | |
151 | 151 | # switch to right version |
152 | - sudo -u git -H git checkout v1.7.4 | |
152 | + sudo -u git -H git checkout v1.7.6 | |
153 | 153 | |
154 | 154 | sudo -u git -H cp config.yml.example config.yml |
155 | 155 | ... | ... |
lib/tasks/gitlab/check.rake
... | ... | @@ -736,7 +736,7 @@ namespace :gitlab do |
736 | 736 | end |
737 | 737 | |
738 | 738 | def check_gitlab_shell |
739 | - required_version = Gitlab::VersionInfo.new(1, 7, 4) | |
739 | + required_version = Gitlab::VersionInfo.new(1, 7, 6) | |
740 | 740 | current_version = Gitlab::VersionInfo.parse(gitlab_shell_version) |
741 | 741 | |
742 | 742 | print "GitLab Shell version >= #{required_version} ? ... " | ... | ... |