Skip to content

Commit

Permalink
Update setup.sh to show cmds and stop on error (#71)
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael Matias <[email protected]>
  • Loading branch information
skylenet authored Jan 28, 2025
1 parent 418812a commit 3ca57a5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/bin/bash
#!/bin/bash -xe

# Plugin list
asdf plugin add age https://github.com/threkk/asdf-age.git
asdf plugin add shellcheck https://github.com/luizm/asdf-shellcheck.git
asdf plugin add sops https://github.com/feniix/asdf-sops.git
asdf plugin add terraform https://github.com/asdf-community/asdf-hashicorp.git
asdf plugin-add helm https://github.com/Antiarchitect/asdf-helm.git
asdf plugin-add python
asdf plugin-add yq https://github.com/sudermanjr/asdf-yq.git
asdf plugin add age https://github.com/threkk/asdf-age.git || true
asdf plugin add shellcheck https://github.com/luizm/asdf-shellcheck.git || true
asdf plugin add sops https://github.com/feniix/asdf-sops.git || true
asdf plugin add terraform https://github.com/asdf-community/asdf-hashicorp.git || true
asdf plugin-add helm https://github.com/Antiarchitect/asdf-helm.git || true
asdf plugin-add python || true
asdf plugin-add yq https://github.com/sudermanjr/asdf-yq.git || true

asdf install

Expand Down

0 comments on commit 3ca57a5

Please sign in to comment.