cask "yandex-cloud-cli" do version "0.153.0" sha256 :no_check url "https://storage.yandexcloud.net/yandexcloud-yc/install.sh", verified: "yandexcloud.net/yandexcloud-yc/" name "Yandex Cloud CLI" desc "CLI for Yandex Cloud" homepage "https://cloud.yandex.com/docs/cli/" livecheck do url "https://storage.yandexcloud.net/yandexcloud-yc/release/stable" regex(/^v?(\d+(?:\.\d+)+)$/i) end installer script: { executable: "install.sh", args: ["-i", "#{staged_path}/#{token}", "-r", "/dev/null"], } binary "yandex-cloud-cli/bin/yc" uninstall delete: "#{staged_path}/#{token}" zap trash: "~/.config/yandex-cloud" caveats <<~EOS To install shell completions add this to your profile: for bash users source "#{staged_path}/#{token}/completion.bash.inc" for zsh users source "#{staged_path}/#{token}/completion.zsh.inc" EOS end