aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2025-01-09 12:16:10 +0000
committerRenato Botelho <garga@FreeBSD.org>2025-01-09 14:21:11 +0000
commit19a6bc9f51e5c5705a2b396b0da61e6536acb4cb (patch)
treed4714c9ed44ad57466c14a7426ff56cde62ac598 /usr.sbin
parent2f82bf3521f955c0ef9cc0019b7f86c13020660c (diff)
Diffstat (limited to 'usr.sbin')
-rwxr-xr-xusr.sbin/fwget/fwget.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/fwget/fwget.sh b/usr.sbin/fwget/fwget.sh
index 3e2181e53b73..d87cd03aa139 100755
--- a/usr.sbin/fwget/fwget.sh
+++ b/usr.sbin/fwget/fwget.sh
@@ -47,7 +47,9 @@ EOF
log()
{
- echo "$@"
+ if [ "${QUIET}" != "y" ]; then
+ echo "$@"
+ fi
}
log_verbose()