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:
@@ -59,7 +59,7 @@ while getopts N opt; do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
PKG_ARGS="-d --rootdir ${ROOTDIR}"
|
PKG_ARGS="--rootdir ${ROOTDIR}"
|
||||||
PKG_ARGS="$PKG_ARGS -o INSTALL_AS_USER=1"
|
PKG_ARGS="$PKG_ARGS -o INSTALL_AS_USER=1"
|
||||||
PKGCMD="/usr/sbin/pkg ${PKG_ARGS}"
|
PKGCMD="/usr/sbin/pkg ${PKG_ARGS}"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user