release: Turn off debugging in pkg(8)

Running `pkg -d` in pkg-stage.sh results in multiple GB of network
traffic being written into the log files, which is less than helpful
when it comes to tracking down build failures.  Remove the -d flag.

MFC after:	5 days
X-MFC-note:	The code in 15 has diverged from 14, but the flag is
		there, just in a different place.
This commit is contained in:
Colin Percival
2026-02-06 13:03:11 -08:00
parent bfd50a32ff
commit 18721be356
+1 -1
View File
@@ -59,7 +59,7 @@ while getopts N opt; do
esac
done
PKG_ARGS="-d --rootdir ${ROOTDIR}"
PKG_ARGS="--rootdir ${ROOTDIR}"
PKG_ARGS="$PKG_ARGS -o INSTALL_AS_USER=1"
PKGCMD="/usr/sbin/pkg ${PKG_ARGS}"