🚑 Fixes installation of custom packages (#1)

* 🔥 Fix typo for installing packages

* Update 80-user-packages.sh
This commit is contained in:
Timmo 2019-03-25 00:17:37 +00:00 committed by Franck Nijhof
parent 024ee21e36
commit 313cc5f1d9

View file

@ -8,7 +8,7 @@ if bashio::config.has_value 'packages'; then
|| bashio::exit.nok 'Failed updating Ubuntu packages repository indexes'
for package in $(bashio::config 'packages'); do
apt add -y "$package" \
apt-get install -y "$package" \
|| bashio::exit.nok "Failed installing package ${package}"
done
fi