Merge pull request #277 from lucor/patch-1

verify_sdk_version: exit with code 1 if the SDK is not found
This commit is contained in:
Thomas Pöchtrager 2021-05-08 13:17:25 +02:00 committed by GitHub
commit 8a716a43a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,7 +179,7 @@ function verify_sdk_version()
done
if [ ! $sdk ] ; then
echo cant find SDK for OSX $sdkv in tarballs. exiting
exit
exit 1
fi
}