summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiyad Preukschas <riyad@informatik.uni-bremen.de>2013-01-07 19:04:20 +0100
committerRiyad Preukschas <riyad@informatik.uni-bremen.de>2013-01-07 21:20:19 +0100
commit11e28aff7db8498dc08165717b476a7b0a34533f (patch)
tree0d887f5b518253118806b02be7a7147d3169e777
parentb6ac9b43344fa645e54991619153c82f643b9579 (diff)
downloadgitlab-ce-11e28aff7db8498dc08165717b476a7b0a34533f.tar.gz
Fix accessing the project repository path in check task
Fixes #2496
-rw-r--r--lib/tasks/gitlab/check.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/gitlab/check.rake b/lib/tasks/gitlab/check.rake
index fff1be5577b..72330440dbf 100644
--- a/lib/tasks/gitlab/check.rake
+++ b/lib/tasks/gitlab/check.rake
@@ -759,7 +759,7 @@ namespace :gitlab do
print "#{project.name_with_namespace.yellow} ... "
correct_options = options.map do |name, value|
- run("git --git-dir=\"#{project.path_to_repo}\" config --get #{name}").try(:chomp) == value
+ run("git --git-dir=\"#{project.repository.path_to_repo}\" config --get #{name}").try(:chomp) == value
end
if correct_options.all?
@@ -798,7 +798,7 @@ namespace :gitlab do
Project.find_each(batch_size: 100) do |project|
print "#{project.name_with_namespace.yellow} ... "
- project_hook_file = File.join(project.path_to_repo, "hooks", hook_file)
+ project_hook_file = File.join(project.repository.path_to_repo, "hooks", hook_file)
unless File.exists?(project_hook_file)
puts "missing".red