Remove 64bit check routine
[scm/meta/abs.git] / abs
diff --git a/abs b/abs
index 668453a..ea98aa2 100755 (executable)
--- a/abs
+++ b/abs
@@ -154,7 +154,7 @@ class _Rootstrap(object):
         cmdline = self.tizen + ' list rootstrap'
         ret = Executor().run(cmdline, show=False)
         for x in ret.splitlines():
-            if re.search('(mobile|wearable)-(2.4|3.0|4.0)-(device|emulator|device64|emulator64).core.*', x):
+            if re.search('(mobile|wearable)-(2.4|3.0|4.0|5.0)-(device|emulator|device64|emulator64).core.*', x):
                 if self.rootstrap_list == None:
                     self.rootstrap_list = []
                 self.rootstrap_list.append(x.split(' ')[0])
@@ -374,9 +374,10 @@ class Sdk(object):
             with open(logpath, 'w') as lf:
                 lf.write(out)
             ret = self.error_parser.check(out)
-            if ret:
+            if True:
                 with open(logpath+'.log', 'w') as lf:
                     lf.write(out)
+            if ret:
                 raise LocalError(ret)
 
     def package(self, source, cert=None, pkg_type=None, conf=None):