svn commit: r51072 - head/share/tools

Wolfram Schneider wosch at FreeBSD.org
Sat Oct 7 09:06:21 UTC 2017


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"


More information about the svn-doc-all mailing list