From: donghee yang Date: Thu, 23 Aug 2012 11:59:13 +0000 (+0900) Subject: [Title] Fixed a bug that remote builder cannot detect compat packages X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29202bf6dd49746e47c5498ec01cc483943e4efe;p=sdk%2Ftools%2Fsdk-build.git [Title] Fixed a bug that remote builder cannot detect compat packages --- diff --git a/src/build_server/BuildJob.rb b/src/build_server/BuildJob.rb index 5afd182..d8b636e 100644 --- a/src/build_server/BuildJob.rb +++ b/src/build_server/BuildJob.rb @@ -794,6 +794,7 @@ class BuildJob ext = File.extname(local_path) base_package_name= File.basename(local_path, "#{cos}#{ext}") @log.info( "Copying compatible package:#{local_path}", Log::LV_USER) + @log.info( "Creating package file ... #{base_package_name}#{@os}#{ext}", Log::LV_USER) FileUtils.cp local_path, "#{@source_path}/#{base_package_name}#{@os}#{ext}" else @log.info( "Downloading compatible package:#{pkg_name}(#{cos})", Log::LV_USER) @@ -805,6 +806,7 @@ class BuildJob end ext = File.extname(loc[0]) base_package_name= File.basename(loc[0], "#{cos}#{ext}") + @log.info( "Creating package file ... #{base_package_name}#{@os}#{ext}", Log::LV_USER) FileUtils.mv loc[0], "#{@source_path}/#{base_package_name}#{@os}#{ext}" end end