mirror of
https://github.com/88lex/sa-gen.git
synced 2025-02-21 22:23:32 +08:00
7 lines
422 B
Bash
Executable file
7 lines
422 B
Bash
Executable file
#!/bin/bash
|
|
echo "Installing Google Cloud SDK..."
|
|
export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)"
|
|
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
|
|
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
|
|
sudo apt-get update && sudo apt-get install google-cloud-sdk
|
|
echo "Google Cloud SDK installation complete."
|