Check that hooks directory exists before attempting to call realpath
Closes #2121
This commit is contained in:
parent
82f0d3e655
commit
ee17102848
1 changed files with 4 additions and 4 deletions
|
@ -485,7 +485,8 @@ namespace :gitlab do
|
|||
|
||||
if project.empty_repo?
|
||||
puts "repository is empty".magenta
|
||||
elsif File.realpath(project_hook_directory) == File.realpath(gitlab_shell_hooks_path)
|
||||
elsif File.directory?(project_hook_directory) && File.directory?(gitlab_shell_hooks_path) &&
|
||||
(File.realpath(project_hook_directory) == File.realpath(gitlab_shell_hooks_path))
|
||||
puts 'ok'.green
|
||||
else
|
||||
puts "wrong or missing hooks".red
|
||||
|
@ -754,7 +755,7 @@ namespace :gitlab do
|
|||
print "Ruby version >= #{required_version} ? ... "
|
||||
|
||||
if current_version.valid? && required_version <= current_version
|
||||
puts "yes (#{current_version})".green
|
||||
puts "yes (#{current_version})".green
|
||||
else
|
||||
puts "no".red
|
||||
try_fixing_it(
|
||||
|
@ -772,7 +773,7 @@ namespace :gitlab do
|
|||
print "Git version >= #{required_version} ? ... "
|
||||
|
||||
if current_version.valid? && required_version <= current_version
|
||||
puts "yes (#{current_version})".green
|
||||
puts "yes (#{current_version})".green
|
||||
else
|
||||
puts "no".red
|
||||
try_fixing_it(
|
||||
|
@ -806,4 +807,3 @@ namespace :gitlab do
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue