From e944e4103843192d8c04b602d0309bba9bbb8f9a Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Wed, 12 Aug 2020 16:44:19 +0200 Subject: SPEC-3482: handle new package name Now we build all package type, we need to handle coverage/test packages. Bug-AGL: SPEC-3482 Change-Id: Idb6dc2d453f26183094d6679dcc5c1f553780a16 Signed-off-by: Corentin LABBE --- common/scripts/application-lifecycle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/application-lifecycle.sh b/common/scripts/application-lifecycle.sh index e0837a6..c03602e 100755 --- a/common/scripts/application-lifecycle.sh +++ b/common/scripts/application-lifecycle.sh @@ -51,7 +51,7 @@ grep -o '[a-z-]*.wgt' index.html | sort | uniq | while read wgtfile do # remove extension and the debug state - WGTNAME=$(echo $wgtfile | sed 's,.wgt$,,' | sed 's,-debug$,,') + WGTNAME=$(echo $wgtfile | sed 's,.wgt$,,' | sed 's,-debug$,,' | sed 's,-test$,,' | sed 's,-coverage$,,') SERVICE_PLATFORM=0 SERVICE_USER=0 APPLICATION_USER=0 -- cgit 1.2.3-korg