From f4b801eeed977841ddd176c8deb0e3a6a8032579 Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Thu, 30 Nov 2017 15:30:27 +0100 Subject: Fail gracefully if SDK is not found MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ic21a7d3b9a38bc0eb7a86cc730534ec08b718116 Signed-off-by: Jan-Simon Möller --- jjb/common/include-apps-fetch-install-sdk.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'jjb/common/include-apps-fetch-install-sdk.sh') diff --git a/jjb/common/include-apps-fetch-install-sdk.sh b/jjb/common/include-apps-fetch-install-sdk.sh index 71894956..639ede48 100644 --- a/jjb/common/include-apps-fetch-install-sdk.sh +++ b/jjb/common/include-apps-fetch-install-sdk.sh @@ -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 -- cgit 1.2.3-korg