From owner-svn-doc-head@freebsd.org Sat Oct 7 09:06:21 2017 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB40BE32FB1; Sat, 7 Oct 2017 09:06:21 +0000 (UTC) (envelope-from wosch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7AE8966BDD; Sat, 7 Oct 2017 09:06:21 +0000 (UTC) (envelope-from wosch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9796KGX074863; Sat, 7 Oct 2017 09:06:20 GMT (envelope-from wosch@FreeBSD.org) Received: (from wosch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9796KmF074862; Sat, 7 Oct 2017 09:06:20 GMT (envelope-from wosch@FreeBSD.org) Message-Id: <201710070906.v9796KmF074862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wosch set sender to wosch@FreeBSD.org using -f From: Wolfram Schneider Date: Sat, 7 Oct 2017 09:06:20 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r51072 - head/share/tools X-SVN-Group: doc-head X-SVN-Commit-Author: wosch X-SVN-Commit-Paths: head/share/tools X-SVN-Commit-Revision: 51072 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Oct 2017 09:06:21 -0000 Author: wosch Date: Sat Oct 7 09:06:20 2017 New Revision: 51072 URL: https://svnweb.freebsd.org/changeset/doc/51072 Log: GIT_REPO_FREEBSD_DOC -> FREEBSD_DOC_GIT_REPO Modified: head/share/tools/webupdate-regression Modified: head/share/tools/webupdate-regression ============================================================================== --- head/share/tools/webupdate-regression Sat Oct 7 09:05:37 2017 (r51071) +++ head/share/tools/webupdate-regression Sat Oct 7 09:06:20 2017 (r51072) @@ -10,8 +10,11 @@ # make_opt=-j2 /path/to/webupdate-regression # # run from a local GIT repo in $HOME/freebsd-doc -# GIT_REPO_FREEBSD_DOC="$HOME/freebsd-doc" /path/to/webupdate-regression +# FREEBSD_DOC_GIT_REPO="$HOME/freebsd-doc" /path/to/webupdate-regression # +# run the regression test on branch "debug" +# FREEBSD_DOC_GIT_BRANCH=debug /path/to/webupdate-regression +# # build html-split format only, on 8 CPUs # WEBUPDATE_FORMATS="html-split" make_opt=-j8 /path/to/webupdate-regression # @@ -34,7 +37,7 @@ set -e : ${NO_OBJ=YES} : ${make_opt=-j8} -: ${GIT_REPO_FREEBSD_DOC="$HOME/freebsd-doc"} +: ${FREEBSD_DOC_GIT_REPO="$HOME/freebsd-doc"} : ${FREEBSD_DOC_GIT_BRANCH=""} : ${WEBUPDATE_FORMATS="html-split html"} : ${WEBUPDATE_RUN_CLEAN=YES} @@ -67,8 +70,8 @@ checkout () echo "NO_OBJ=$NO_OBJ" echo "make_opt=$make_opt" - echo "git clone from $GIT_REPO_FREEBSD_DOC -> doc" - git clone -q $GIT_REPO_FREEBSD_DOC doc + echo "git clone from $FREEBSD_DOC_GIT_REPO -> doc" + git clone -q $FREEBSD_DOC_GIT_REPO doc cd doc if [ "$FREEBSD_DOC_GIT_BRANCH" != "" ]; then echo "switch to branch $FREEBSD_DOC_GIT_BRANCH"