'Generic Commit'
Some checks failed
dropshell-build / build (push) Failing after 11s

This commit is contained in:
Your Name 2025-06-01 22:24:02 +12:00
parent be59c2c266
commit 60dd34f745

View File

@ -79,13 +79,12 @@ function install_packages() {
case $OS in
"Ubuntu"|"Debian GNU/Linux")
# Common packages for both Ubuntu and Debian
# cmake make g++ build-essential upx musl-tools wget tar ccache ninja-build mold
PACKAGES="build-essential cmake git wget tar curl ninja-build mold nodejs npm perl jq ccache"
PACKAGES="build-essential cmake git wget tar curl ninja-build mold nodejs npm perl jq ccache upx"
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 jq ccache"
PACKAGES="build-base cmake git wget tar curl ninja mold nodejs npm linux-headers perl jq ccache upx"
INSTALLCMD="apk add --no-cache"
UPDATECMD="apk update"
;;