Skip to content

Commit

Permalink
Use set -e to catch errors in all scripts (#2347)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbley committed Mar 14, 2024
1 parent af1528d commit 9b3d0b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
set -e

PROM_VERSION=v2.39.0
PROTO_VERSION=v1.3.2
Expand Down
3 changes: 2 additions & 1 deletion scripts/prepare_release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
#
set -e

# This script:
# 1. parses the version number from the branch name
# 2. updates version.py files to match that version
Expand Down

0 comments on commit 9b3d0b4

Please sign in to comment.