Skip to content

Commit

Permalink
feat: automate gcloud installation
Browse files Browse the repository at this point in the history
  • Loading branch information
st3v3nhunt committed Jun 15, 2020
1 parent 87c54be commit 71d7439
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
fi

./scripts/install-gems.sh
./scripts/install-gcloud.sh
./scripts/install-nvm.sh
./scripts/install-npms.sh
./scripts/install-pips.sh
Expand Down
6 changes: 6 additions & 0 deletions scripts/install-gcloud.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash

printf "Installing gcloud sdk\\n"
curl https://sdk.cloud.google.com > gcloud-installer.sh
bash gcloud-installer.sh --disable-prompts
rm gcloud-installer.sh

0 comments on commit 71d7439

Please sign in to comment.