contrib: use full path to check the Xcode archive

This commit is contained in:
Antoine Poinsot 2023-08-07 15:00:43 +02:00
parent 39d576fe83
commit 9a08f14aa4
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304

View File

@ -24,7 +24,7 @@ docker run --rm -ti \
# Sanity check the given MacOS SDK is the expected one.
if ! $(echo "$XCODE_SHASUM $(basename $XCODE_PATH)" | sha256sum -c --status); then
if ! $(echo "$XCODE_SHASUM $XCODE_PATH" | sha256sum -c --status); then
echo "No or invalid Xcode SDK found. Need an Xcode_X.Y.xip archive whose hash is $XCODE_SHASUM. You can configure the path using \$XCODE_PATH.";
exit 1;
fi