'Generic Commit'
Some checks failed
Build-Test-Publish / build (push) Successful in 4s
dropshell-build / build (push) Failing after 1m11s

This commit is contained in:
Your Name 2025-06-01 13:25:20 +12:00
parent 2caa800363
commit f13fd0830a

View File

@ -46,7 +46,7 @@ is_package_installed() {
if [ "$OS" = "Alpine Linux" ]; then
apk info | grep -q "^$1$"
else
dpkg -l "$1"
dpkg -l "$1" 2>/dev/null 1>/dev/null
fi
}
@ -72,7 +72,7 @@ function check_packages() {
;;
esac
print_status "Checking required packages..."
echo "Checking required packages..."
for pkg in $PACKAGES; do
if ! is_package_installed "$pkg"; then
echo "Missing package: $pkg"