git: 624f956bd91f - main - fwget: Always install packages
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 14 Jun 2023 07:19:06 UTC
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}