aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin LABBE <clabbe@baylibre.com>2020-08-12 16:44:19 +0200
committerCorentin LABBE <clabbe@baylibre.com>2020-08-12 16:44:19 +0200
commite944e4103843192d8c04b602d0309bba9bbb8f9a (patch)
treedbb6e05026cb3d7e58b54107dcd2e8d906d0b3f4
parent18c1f7790b59adb2c798a68e9c3f0a2b24558986 (diff)
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 <clabbe@baylibre.com>
-rwxr-xr-xcommon/scripts/application-lifecycle.sh2
1 files changed, 1 insertions, 1 deletions
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