Update-pkg: added google-cloud-sdk

This commit is contained in:
Marcin Woźniak 2025-02-26 00:14:36 +01:00
parent 93f83ec173
commit e33f4eb6fd
Signed by: y0rune
GPG Key ID: F204C385F57EB348

View File

@ -489,6 +489,15 @@ function install_prettier(){
$install prettierd
}
function install_google_cloud_sdk() {
# Install google cloud sdk
if [[ "$(uname)" == "Darwin" ]]; then
$install google-cloud-sdk
else
curl -s https://sdk.cloud.google.com | bash
fi
}
function main() {
command_start update_pip
command_start install_neovim_module_for_python
@ -527,6 +536,7 @@ function main() {
command_start install_fzf
command_start install_winbox_old
command_start install_prettier
command_start install_google_cloud_sdk
command_start install_zsh_addons
command_start install_brew_programs
}