Fail gracefully if SDK is not found 43/12243/1
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>
Thu, 30 Nov 2017 14:30:27 +0000 (15:30 +0100)
committerJan-Simon Möller <jsmoeller@linuxfoundation.org>
Thu, 30 Nov 2017 14:30:27 +0000 (15:30 +0100)
Change-Id: Ic21a7d3b9a38bc0eb7a86cc730534ec08b718116
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
jjb/common/include-apps-fetch-install-sdk.sh

index 7189495..639ede4 100644 (file)
@@ -36,8 +36,9 @@ export TARGETSDKNAME=$(curl -s "$SDKBASEURL" | grep -e "crosssdk.*\.sh<" | sed -
 
 if test x"" = x"${TARGETSDKNAME}" ; then
     echo "Could not retrieve TARGETSDKNAME from download.automotivelinux.org"
-    echo "Abort."
-    exit 1
+    echo "Abort gracefully."
+    exit 0
+    #exit 1
 fi
 
 if test ! -f ${TARGETSDKNAME} ; then