From 9090adc52c99cb1d58b14eec7e62ab54f60b0ba8 Mon Sep 17 00:00:00 2001 From: Stuart Montgomery Date: Tue, 6 Jan 2026 07:36:24 -0600 Subject: [PATCH] Fix error installing yq tool in check-docs soundness script --- .github/workflows/scripts/check-docs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/check-docs.sh b/.github/workflows/scripts/check-docs.sh index fec40a17..d0becf00 100755 --- a/.github/workflows/scripts/check-docs.sh +++ b/.github/workflows/scripts/check-docs.sh @@ -24,8 +24,8 @@ fi if ! command -v yq &> /dev/null; then case "$(uname -s)" in - Darwin*) echo brew install yq;; - Linux*) echo apt -q update && apt -yq install yq;; + Darwin*) brew install yq;; + Linux*) apt -q update && apt -yq install yq;; esac fi