Add 4.0 rootstrap checks
authorhyokeun <hyokeun.jeon@samsung.com>
Fri, 31 Mar 2017 09:26:50 +0000 (18:26 +0900)
committerhyokeun <hyokeun.jeon@samsung.com>
Fri, 31 Mar 2017 09:26:50 +0000 (18:26 +0900)
Change-Id: I9de667030a1c1dd0e3098a0a08da06499b1c7d39

abs

diff --git a/abs b/abs
index 8c8c6c8..d2b5312 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)-(device|emulator|device64|emulator64).core.*', x):
+            if re.search('(mobile|wearable)-(2.4|3.0|4.0)-(device|emulator|device64|emulator64).core.*', x):
                 if self.rootstrap_list == None:
                     self.rootstrap_list = []
                 self.rootstrap_list.append(x.split(' ')[0])