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

@ -484,11 +484,20 @@ function install_winbox_old() {
xattr -cr ~/Applications/winbox.exe xattr -cr ~/Applications/winbox.exe
} }
function install_prettier(){ function install_prettier() {
$install prettier $install prettier
$install prettierd $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() { function main() {
command_start update_pip command_start update_pip
command_start install_neovim_module_for_python command_start install_neovim_module_for_python
@ -527,6 +536,7 @@ function main() {
command_start install_fzf command_start install_fzf
command_start install_winbox_old command_start install_winbox_old
command_start install_prettier command_start install_prettier
command_start install_google_cloud_sdk
command_start install_zsh_addons command_start install_zsh_addons
command_start install_brew_programs command_start install_brew_programs
} }