From a04ecc663df167f6b4f6926fcf25fcc2a0f1fd2e Mon Sep 17 00:00:00 2001 From: Kyle Buller Date: Sat, 24 Sep 2022 18:42:42 -0500 Subject: [PATCH] Fix jq check --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index bb77095..4095d66 100755 --- a/release.sh +++ b/release.sh @@ -2998,7 +2998,7 @@ upload_github() { if [[ -z $skip_upload && -n $archive && -s $archive ]]; then - if command -v jq &>/dev/null; then + if ! command -v jq &>/dev/null; then echo "Skipping upload because \"jq\" was not found." echo exit_code=1