Update naming of SDKs provided by IoT.bzh 11/17111/1
authorSebastien Douheret <sebastien.douheret@iot.bzh>
Tue, 9 Oct 2018 16:11:27 +0000 (18:11 +0200)
committerSebastien Douheret <sebastien.douheret@iot.bzh>
Tue, 9 Oct 2018 16:11:27 +0000 (18:11 +0200)
Change-Id: I83df3abdb19c5075353510cba9dc296de8c04548
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
scripts/sdks/agl/_build-sdks-json.sh

index 60e0e71..1357d63 100755 (executable)
@@ -88,8 +88,11 @@ for url in $(echo $urls); do
         arch=$(echo "${sdkFile}" | sed -r 's/.*crosssdk-(.*)-toolchain.*/\1/')
 
         endUrl=${url#$SDK_AGL_BASEURL}
-        if [ "${endUrl::4}" = "http" ]; then
-            name=${profile}_${arch}_${version}
+        if [ "${url::14}" = "http://iot.bzh" ]; then
+            endUrl=${url#$SDK_AGL_IOTBZH_BASEURL}
+            name=$(echo "IoTbzh-$(echo ${endUrl} | cut -d'/' -f3,4 | sed s:/:-:g)-${version}")
+        elif [ "${endUrl::4}" = "http" ]; then
+            name="${profile}_${arch}_${version}"
         else
             name=$(echo "AGL-$(echo ${endUrl} | cut -d'/' -f2,3,4,5)" | sed s:/:-:g)
         fi