From 28f29f20978c6349fd5a9c1f93954c97b46cfb16 Mon Sep 17 00:00:00 2001 From: Sanghoon Lee Date: Mon, 11 Feb 2019 16:02:17 +0900 Subject: [PATCH] [Script][Non-ACR][Added NUI wearable suite into only wearable profile] Change-Id: I4c4c51598658ab06ee3fd1d6e9d2d9f2795a6de2 --- tool/script/auto_binary.py | 1 + tool/script/pack.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/tool/script/auto_binary.py b/tool/script/auto_binary.py index 79e19f3..00d22ea 100755 --- a/tool/script/auto_binary.py +++ b/tool/script/auto_binary.py @@ -49,6 +49,7 @@ if __name__ == "__main__": os.system(LINUX_PERMISSION+' python pack.py '+'all') os.system(LINUX_PERMISSION+' python pack.py '+'auto ElmSharpWearable') os.system(LINUX_PERMISSION+' python pack.py '+'manual ElmSharpWearable') + os.system(LINUX_PERMISSION+' python pack.py '+'auto NUI.Wearable') # Copy mobile package folder to wearable package. # set wearable_pkg_info.xml diff --git a/tool/script/pack.py b/tool/script/pack.py index 288e2c1..7cfbe50 100755 --- a/tool/script/pack.py +++ b/tool/script/pack.py @@ -80,7 +80,10 @@ def folder_list(path): res = [] for name in os.listdir(path): if name.endswith('Tests'): - if "ElmSharpWearable" in name : + if "ElmSharpWearable" in name : + continue + + if "NUI.Wearable" in name : continue splitwords = name.split(".") -- 2.7.4