diff options
-rw-r--r-- | jjb/common/include-apps-fetch-install-sdk.sh | 5 |
1 files changed, 3 insertions, 2 deletions
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 |