Skip to content

Commit

Permalink
Check if jq is installed before executing script
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyhun committed Aug 17, 2020
1 parent 2290c15 commit b117167
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/release_automation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ source bin/release_utils.sh
# Check that Github CLI is installed
command -v gh >/dev/null || abort "Error: The Github CLI must be installed."

# Check that jq is installed
command -v jq >/dev/null || abort "Error: jq must be installed."

# Check that Aztec versions are set to release versions
aztec_version_problems="$(check_android_and_ios_aztec_versions)"
if [[ ! -z "$aztec_version_problems" ]]; then
Expand Down

0 comments on commit b117167

Please sign in to comment.