minor build server xmlrpc fix

This commit is contained in:
Alexey Nayden 2011-04-07 13:27:30 +04:00
parent 58f8ce453e
commit f27f5558e9
1 changed files with 5 additions and 1 deletions

View File

@ -35,10 +35,14 @@ class BuildServer
def self.create_repo name, platform_name
self.client.call('create_repo', name, platform_name)
self.client.call('create_repository', name, platform_name)
end
def self.delete_repo name, platform_name
self.client.call('delete_repository', name, platform_name)
end
def self.clone_repo new_name, old_name, new_platform_name
self.client.call('clone_repo', new_name, old_name, new_platform_name)
end