Date: Wed, 14 Jun 2023 07:19:06 GMT From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 624f956bd91f - main - fwget: Always install packages Message-ID: <202306140719.35E7J6p7090232@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=624f956bd91f118d12b2fef5ff01521ed7d8a935 commit 624f956bd91f118d12b2fef5ff01521ed7d8a935 Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2023-06-14 07:17:55 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2023-06-14 07:17:55 +0000 fwget: Always install packages This wasn't done before as -y wasn't added to the pkg install line. Sponsored by: Beckhoff Automation GmbH & Co. KG --- 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 89177d936107..2d5ad8adffd8 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 -q ${packages} +pkg install -qy ${packages}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202306140719.35E7J6p7090232>