Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 18 Aug 2023 01:23:24 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 214e3e09b338 - main - fwget: fix installing multiple firmware files
Message-ID:  <202308180123.37I1NOh3030309@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by bz:

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

commit 214e3e09b3381e44bf5d9c1dcd19c4b1b923a796
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2023-08-15 20:29:03 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202308180123.37I1NOh3030309>