fwget: fix installing multiple firmware files

Remove quotes around the list of packages to install.
Otherwise pkg is only fed one argument which results in a
non-working solution:
pkg: No packages available to install matching 'wifi-firmware-ath10k-kmod wifi-firmware-mt76-kmod wifi-firmware-ath11k-kmod' have been found in the repositories

MFC after:	10 days
Reviewed by:	manu
Differential Revision: https://reviews.freebsd.org/D41474
This commit is contained in:
Bjoern A. Zeeb 2023-08-15 20:29:03 +00:00
parent b80ea45237
commit 214e3e09b3

View File

@ -122,4 +122,4 @@ if [ "${DRY_RUN}" = "y" ]; then
exit 0
fi
pkg install -qy "${packages}"
pkg install -qy ${packages}