From 2a744bf6e960ea4644f6f9c71529be6d2247aac3 Mon Sep 17 00:00:00 2001 From: hyokeun Date: Mon, 20 Nov 2017 11:34:08 +0900 Subject: [PATCH] Adding 5.0 profile support --- abs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abs b/abs index 42488a2..ea98aa2 100755 --- 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]) -- 2.7.4