Skip to content

Commit d2c197d

Browse files
committed
feat: add jq install
1 parent 725934b commit d2c197d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

02-dev-tools.sh

+8
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,14 @@ else
105105
echo "FFmpeg is already installed."
106106
fi
107107

108+
# Install jq for JSON processing if not already installed
109+
if ! brew list jq &>/dev/null; then
110+
echo "Installing jq..."
111+
brew install jq
112+
else
113+
echo "jq is already installed."
114+
fi
115+
108116
# Install GitHub CLI if not already installed
109117
if ! brew list gh &>/dev/null; then
110118
echo "Installing GitHub CLI..."

0 commit comments

Comments
 (0)