[Title] Changed "warn" to "error" if build script failed
authordonghee yang <donghee.yang@samsung.com>
Fri, 24 Aug 2012 00:41:01 +0000 (09:41 +0900)
committerdonghee yang <donghee.yang@samsung.com>
Fri, 24 Aug 2012 00:41:01 +0000 (09:41 +0900)
src/builder/Builder.rb

index 4a1b2aa6fa55b8d63af5ceeffed030cbdf2fbdbc..a8f020b61039b92fa9b1e5d4b1df9e62f25a8a0a 100644 (file)
@@ -413,7 +413,7 @@ class Builder
 
                # execute script
                if not Utils.execute_shell_with_log( build_command, @log ) then
-                       @log.warn( "Failed on build script: \"#{target}\"", Log::LV_USER)
+                       @log.error( "Failed on build script: \"#{target}\"", Log::LV_USER)
                        return false
                else
                        Utils.execute_shell_with_log( "rm -rf #{src_path}/.build.sh", @log )