Fix invalid method call for gitolite

This commit is contained in:
Dmitriy Zaporozhets 2012-11-27 16:35:00 +02:00
parent f5551efdfd
commit 039996bd0a
2 changed files with 3 additions and 3 deletions

View file

@ -264,7 +264,7 @@ class Project < ActiveRecord::Base
Gitlab::ProjectMover.new(self, old_dir, new_dir).execute
git_host.move_repository(old_repo, self.path_with_namespace, self)
git_host.move_repository(old_repo, self)
save!
end

View file

@ -26,10 +26,10 @@ module Gitlab
config.update_project!(project)
end
def move_repository(old_repo, new_repo, project)
def move_repository(old_repo, project)
config.apply do |config|
config.clean_repo(old_repo)
config.update_project(new_repo, project)
config.update_project(project)
end
end