split package names

This commit is contained in:
David Tomaschik
2022-01-14 20:57:33 -08:00
parent 273d6b495f
commit 9f4fbfb06a

View File

@@ -249,7 +249,8 @@ install_pkg_set() {
done < "${pkg_file}"
if [ -n "${pkg_list}" ] ; then
verbose "Installing ${pkg_list}"
run_as_root apt-get install -qqy "${pkg_list}"
# shellcheck disable=SC2086
run_as_root apt-get install -qqy ${pkg_list}
fi
}