🔥 Fix typo for installing packages

This commit is contained in:
Timmo 2019-03-25 00:14:21 +00:00 committed by GitHub
parent 024ee21e36
commit 655c35a445
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 install -y "$package" \
|| bashio::exit.nok "Failed installing package ${package}"
done
fi