Update 98-install-packages

fix old changes...
This commit is contained in:
RoboMagus
2022-02-20 19:08:21 +01:00
committed by GitHub
parent ee5ec110d2
commit e034849305
+2 -2
View File
@@ -15,7 +15,7 @@ for PKG in "${INSTALL_PACKAGES[@]}"; do
# Ubuntu
if [ -f /usr/bin/apt ]; then
apt install -y --no-install-recommends ${PKG}
apt-get install -y --no-install-recommends ${PKG}
fi
# Alpine
@@ -23,4 +23,4 @@ for PKG in "${INSTALL_PACKAGES[@]}"; do
apk add --no-cache ${PKG}
fi
done
done