+* 2.1.24
+- Fixed a bug that job assignment to child server is wrong
+== donghee yang <donghee.yang@samsung.com> 2013-04-12
* 2.1.23
- Modified to make build-server work when max-job is zero
== donghee yang <donghee.yang@samsung.com> 2013-04-12
Source : dibs
-Version :2.1.23
+Version :2.1.24
Maintainer : taejun ha<taejun.ha@samsung.com>, jiil hyoun <jiil.hyoun@samsung.com>, donghyuk yang <donghyouk.yang@samsung.com>, donghee yang <donghee.yang@samsung.com>, sungmin kim <dev.sungmin.kim@samsung.com
Package : dibs
if @pkginfo.nil? then return false end
@pkginfo.packages.each do |pkg|
- if pkg.os_list.include? @os and pkg.build_host_os.include? host_os then
- return true
+ if not pkg.os_list.include? @os then next end
+ if not pkg.build_host_os.include? host_os then
+ return false
end
end
- return false
+
+ return true
end