[Script][Non-ACR][Added NUI wearable suite into only wearable profile] 95/199395/2
authorSanghoon Lee <shooney.lee@samsung.com>
Mon, 11 Feb 2019 07:02:17 +0000 (16:02 +0900)
committerSanghoon Lee <shooney.lee@samsung.com>
Mon, 11 Feb 2019 07:32:27 +0000 (16:32 +0900)
Change-Id: I4c4c51598658ab06ee3fd1d6e9d2d9f2795a6de2

tool/script/auto_binary.py
tool/script/pack.py

index 79e19f3..00d22ea 100755 (executable)
@@ -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
index 288e2c1..7cfbe50 100755 (executable)
@@ -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(".")