Skip to content

Commit

Permalink
Merge pull request #2373 from CosmWasm/fail-ci-when-download-fails
Browse files Browse the repository at this point in the history
Ensure "Install shfmt" step fails when download fails
  • Loading branch information
webmaster128 authored Feb 6, 2025
2 parents b1cc063 + 913acc4 commit 1cd820c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,9 @@ jobs:
- checkout
- run:
name: Install shfmt
command: curl -sS https://webinstall.dev/shfmt | bash
command: |
wget -O install_shfmt.sh https://webinstall.dev/shfmt
bash install_shfmt.sh
- run:
name: Validate Markdown files
command: devtools/format_md.sh -c
Expand Down

0 comments on commit 1cd820c

Please sign in to comment.