Skip to content

Commit a175884

Browse files
authored
Fix error installing yq tool in check-docs soundness script (#219)
1 parent 4905c1c commit a175884

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/scripts/check-docs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ fi
2424

2525
if ! command -v yq &> /dev/null; then
2626
case "$(uname -s)" in
27-
Darwin*) echo brew install yq;;
28-
Linux*) echo apt -q update && apt -yq install yq;;
27+
Darwin*) brew install yq;;
28+
Linux*) apt -q update && apt -yq install yq;;
2929
esac
3030
fi
3131

0 commit comments

Comments
 (0)