summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/script/ceph-backport.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/script/ceph-backport.sh b/src/script/ceph-backport.sh
index 5a9882baa33..dbcac48d016 100755
--- a/src/script/ceph-backport.sh
+++ b/src/script/ceph-backport.sh
@@ -22,7 +22,7 @@ set -e
full_path="$0"
-SCRIPT_VERSION="15.1.1.389"
+SCRIPT_VERSION="16.0.0.6848"
active_milestones=""
backport_pr_labels=""
backport_pr_number=""
@@ -1400,6 +1400,16 @@ else
abort_due_to_setup_problem
fi
+#
+# do we have jq available?
+#
+
+if type jq >/dev/null 2>&1 ; then
+ debug "jq is available. Good."
+else
+ error "This script uses jq, but it does not seem to be installed"
+ abort_due_to_setup_problem
+fi
#
# is jq available?