diff --git a/dropshell-build/install_dropshell_build_host.sh b/dropshell-build/install_dropshell_build_host.sh index 9233ac9..009cce0 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="bash build-essential cmake git wget tar curl ninja-build mold nodejs npm" + PACKAGES="build-essential cmake git wget tar curl ninja-build mold nodejs npm" INSTALLCMD="apt-get install -y" UPDATECMD="apt-get update" ;; "Alpine Linux") - PACKAGES="bash build-base cmake git wget tar curl ninja mold nodejs npm" + PACKAGES="build-base cmake git wget tar curl ninja mold nodejs npm" INSTALLCMD="apk add --no-cache" UPDATECMD="apk update" ;;