fix according to documentation

This commit is contained in:
Alexey Nayden 2011-04-14 13:25:29 +04:00
parent 6fe93380f5
commit 23f9c90708
1 changed files with 2 additions and 2 deletions

View File

@ -22,9 +22,9 @@ class BuildServer
end
def self.add_platform name, root_folder, repos = [], git_path = nil
def self.add_platform name, root_folder, repos = []
Rails.logger.info "add_platform start"
self.client.call('add_platform', name, git_path, root_folder, repos)
self.client.call('add_platform', name, root_folder, repos)
Rails.logger.info "add_platform ok"
end