google-cloud-sdk fix 452.0.0

The cask depended on an undecorated python which appears to evauluate
to the latest available python version, but since the sdk's install.sh
has an explicit python version constraint
<https://github.com/twistedpair/google-cloud-sdk/blob/12f6dd21336576e69ec3840be974f49d0ce89cbd/google-cloud-sdk/install.sh#L48>
when the python cask was advanced past 3.10, this install fails on
a clean machine.
This commit is contained in:
Steven Velez
2023-10-25 14:46:12 -04:00
parent f3c7821c73
commit 74e97af7f0
+1 -1
View File
@@ -16,7 +16,7 @@ cask "google-cloud-sdk" do
end
auto_updates true
depends_on formula: "python"
depends_on formula: "python@3.10"
google_cloud_sdk_root = "#{HOMEBREW_PREFIX}/share/google-cloud-sdk"