--ignore-missing does not work as expected

This commit is contained in:
Jiri Kucera 2019-09-13 15:10:09 +02:00
parent a13e175084
commit bd3010cc75

View file

@ -12,5 +12,7 @@ fi
if [[ "${LSR_EXTRA_PACKAGES}" ]]; then
sudo apt-get update
sudo apt-get --ignore-missing install -y ${LSR_EXTRA_PACKAGES}
for P in ${LSR_EXTRA_PACKAGES}; do
sudo apt-get install -y ${P} || :
done
fi