From 4a88bff04f2b6cefad257b31981de0a8514bb9bc Mon Sep 17 00:00:00 2001 From: Mitch Goudy Date: Mon, 23 Sep 2024 12:45:32 -0600 Subject: [PATCH] use jq over json for compatibility --- bin/publish-docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/publish-docs.sh b/bin/publish-docs.sh index 9b572ad..a44ec09 100755 --- a/bin/publish-docs.sh +++ b/bin/publish-docs.sh @@ -12,7 +12,7 @@ else # Legacy variant fi -VERSION=`cat package.json|json version` +VERSION=$(cat package.json | jq -r .version) echo "Publishing docs"