Author: gjb
Date: Sat Aug 29 21:47:49 2020
New Revision: 364968
URL: https://svnweb.freebsd.org/changeset/base/364968

Log:
  Fix ordering of the 'pull' subcommand and the '-q' flag.
  
  Pointyhat to: gjb (myself)
  Sponsored by: Rubicon Communications, LLC (netgate.com)

Modified:
  head/release/release.sh

Modified: head/release/release.sh
==============================================================================
--- head/release/release.sh     Sat Aug 29 21:46:34 2020        (r364967)
+++ head/release/release.sh     Sat Aug 29 21:47:49 2020        (r364968)
@@ -221,21 +221,21 @@ chroot_setup() {
 
        if [ -z "${SRC_UPDATE_SKIP}" ]; then
                if [ -d "${CHROOTDIR}/usr/src/.git" ]; then
-                       git -C ${CHROOTDIR}/usr/src -q pull
+                       git -C ${CHROOTDIR}/usr/src pull -q
                else
                        ${VCSCMD} ${SRC} -b ${SRCBRANCH} ${CHROOTDIR}/usr/src
                fi
        fi
        if [ -z "${NODOC}" ] && [ -z "${DOC_UPDATE_SKIP}" ]; then
                if [ -d "${CHROOTDIR}/usr/doc/.git" ]; then
-                       git -C ${CHROOTDIR}/usr/doc -q pull
+                       git -C ${CHROOTDIR}/usr/doc pull -q
                else
                        ${VCSCMD} ${DOC} -b ${DOCBRANCH} ${CHROOTDIR}/usr/doc
                fi
        fi
        if [ -z "${NOPORTS}" ] && [ -z "${PORTS_UPDATE_SKIP}" ]; then
                if [ -d "${CHROOTDIR}/usr/ports/.git" ]; then
-                       git -C ${CHROOTDIR}/usr/ports -q pull
+                       git -C ${CHROOTDIR}/usr/ports pull -q
                else
                        ${VCSCMD} ${PORT} -b ${PORTBRANCH} 
${CHROOTDIR}/usr/ports
                fi
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to