Don't try to install if packages is empty

After running through pkg-map we could have no packages to install,
if so, don't attempt to run a malformed command.

Change-Id: Ia8e0aed62bcf814bf85c86b54ff0837da49ae7dd
This commit is contained in:
Jon-Paul Sullivan 2014-07-15 12:44:41 +01:00
parent 6f7af6f5a2
commit 94a0947a60

View File

@ -63,4 +63,8 @@ if [ -n "$MAP_ELEMENT" ]; then
fi
fi
install_deb_packages $ACTION $PKGS
if [ -z "${PKGS}" ]; then
echo "Not running install-packages $ACTION with empty packages list"
else
install_deb_packages $ACTION $PKGS
fi