Merge pull request #105798 from Onlinerocker/fix_silent_fail_in_vulkan_install_script

Fix install_vulkan_sdk_macos.sh incorrectly saying Vulkan was installed when jq is missing
This commit is contained in:
Thaddeus Crews 2025-04-28 10:01:29 -05:00
commit e68d97ecac
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC

View file

@ -22,6 +22,9 @@ if command -v jq 2>&1 >/dev/null; then
fi
fi
done
else
echo 'Error: Could not find 'jq' command. Is jq installed? Try running "brew install jq" or "port install jq" and rerunning this script.'
exit 0
fi
# Download and install the Vulkan SDK.