The branch main has been updated by bz:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=214e3e09b3381e44bf5d9c1dcd19c4b1b923a796

commit 214e3e09b3381e44bf5d9c1dcd19c4b1b923a796
Author:     Bjoern A. Zeeb <[email protected]>
AuthorDate: 2023-08-15 20:29:03 +0000
Commit:     Bjoern A. Zeeb <[email protected]>
CommitDate: 2023-08-18 01:22:22 +0000

    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
---
 usr.sbin/fwget/fwget.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/fwget/fwget.sh b/usr.sbin/fwget/fwget.sh
index 90bc23b07077..154fb7dc92e1 100644
--- a/usr.sbin/fwget/fwget.sh
+++ b/usr.sbin/fwget/fwget.sh
@@ -122,4 +122,4 @@ if [ "${DRY_RUN}" = "y" ]; then
        exit 0
 fi
 
-pkg install -qy "${packages}"
+pkg install -qy ${packages}

Reply via email to