aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/fwget/fwget.sh
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2023-06-14 07:17:55 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2023-06-14 07:17:55 +0000
commit624f956bd91f118d12b2fef5ff01521ed7d8a935 (patch)
treef7896dd200599dfc31c6db86ad1fb11386803dcb /usr.sbin/fwget/fwget.sh
parent171a7bbfc04885150401ab64d96793373a8b2061 (diff)
downloadsrc-624f956bd91f118d12b2fef5ff01521ed7d8a935.tar.gz
src-624f956bd91f118d12b2fef5ff01521ed7d8a935.zip
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
Diffstat (limited to 'usr.sbin/fwget/fwget.sh')
-rw-r--r--usr.sbin/fwget/fwget.sh2
1 files changed, 1 insertions, 1 deletions
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}