Fix params order in BuildServer

This commit is contained in:
Vladimir Sharshov 2011-10-27 20:42:02 +04:00
parent 6a0092bbb6
commit f1ccc9e1ba
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class BuildServer
end
def self.add_platform name, root_folder, repos = {:src => [], :rpm => []}, distrib_type
def self.add_platform name, root_folder, distrib_type, repos = {:src => [], :rpm => []}
self.client.call('add_platform', name, root_folder, repos, distrib_type)
end