From 2c0774e4a777fad791873f8f583ac4237c164936 Mon Sep 17 00:00:00 2001 From: Andrew Rogers Date: Mon, 9 Oct 2023 02:41:34 -0500 Subject: [PATCH] make-lsp: Check for jq command on startup --- scripts/make-lsp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/make-lsp b/scripts/make-lsp index 9b3cfc4..5ac533d 100755 --- a/scripts/make-lsp +++ b/scripts/make-lsp @@ -6,6 +6,9 @@ . "$(dirname $0)/util/logging.bash" +command -v jq > /dev/null \ + || die 'ERROR: Please install the "jq" command!' + define_usage <