X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=abs;h=098e4969792e0627c1b8c716ad447dabc409038f;hb=2b7737bbb4f6e62a38c297ac47170d5048507c76;hp=a73c8bbad8591f68aa4bac0d7d18bd4205029e29;hpb=350c96890837c7a8ba77743de46691b39ad1c4db;p=scm%2Fmeta%2Fabs.git diff --git a/abs b/abs index a73c8bb..098e496 100755 --- a/abs +++ b/abs @@ -411,8 +411,10 @@ class Sdk(object): os.makedirs(output_dir) with open(logpath + '.log', 'w') as lf: lf.write(out) - if 'keystore password was incorrect' in out: - raise LocalError('keystore password was incorrect for %s.' % appname) + if 'keystore password was incorrect' in out \ + or 'Sequence tag error' in out \ + or 'Signing... java.io.IOException: ' in out: + raise LocalError('signing error for %s.' % appname) raise LocalError('TPK/WGT file not generated for %s.' % appname) def package(self, source, cert=None, pkg_type=None, conf='Debug', manual_strip=False):