From cd7d2535a45346a383b0f7e20ee861e9af091919 Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 30 May 2025 00:35:36 +1200 Subject: [PATCH] :-'Generic Commit' --- dropshell-build/install_dropshell_build_host.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dropshell-build/install_dropshell_build_host.sh b/dropshell-build/install_dropshell_build_host.sh index f14db3c..de4e883 100755 --- a/dropshell-build/install_dropshell_build_host.sh +++ b/dropshell-build/install_dropshell_build_host.sh @@ -80,12 +80,12 @@ function install_packages() { case $OS in "Ubuntu"|"Debian GNU/Linux") # Common packages for both Ubuntu and Debian - PACKAGES="build-essential cmake git wget tar curl ninja-build mold nodejs npm perl" + PACKAGES="build-essential cmake git wget tar curl ninja-build mold nodejs npm perl jq" INSTALLCMD="apt-get install -y" UPDATECMD="apt-get update" ;; "Alpine Linux") - PACKAGES="build-base cmake git wget tar curl ninja mold nodejs npm linux-headers perl" + PACKAGES="build-base cmake git wget tar curl ninja mold nodejs npm linux-headers perl jq" INSTALLCMD="apk add --no-cache" UPDATECMD="apk update" ;;