From 328342ce9ff0da9a41077dc8654aa0a9b1690aa0 Mon Sep 17 00:00:00 2001 From: Kay Simmons Date: Fri, 18 Nov 2022 13:42:46 -0800 Subject: [PATCH] change bump-version to install jq if its not already installed --- script/lib/bump-version.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/script/lib/bump-version.sh b/script/lib/bump-version.sh index 7800cc4408..ce95536950 100755 --- a/script/lib/bump-version.sh +++ b/script/lib/bump-version.sh @@ -13,6 +13,7 @@ if [[ -n $(git status --short --untracked-files=no) ]]; then fi which cargo-set-version > /dev/null || cargo install cargo-edit +which jq > /dev/null || brew install jq cargo set-version --package $package --bump $version_increment cargo check --quiet