You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2012/05/08 18:40:23 UTC

svn commit: r1335624 - /subversion/site/publish/docs/community-guide/repro-template.sh

Author: danielsh
Date: Tue May  8 16:40:23 2012
New Revision: 1335624

URL: http://svn.apache.org/viewvc?rev=1335624&view=rev
Log:
* docs/community-guide/repro-template.sh
  ($SVN): Use $SVN from the environment, if set.

Modified:
    subversion/site/publish/docs/community-guide/repro-template.sh

Modified: subversion/site/publish/docs/community-guide/repro-template.sh
URL: http://svn.apache.org/viewvc/subversion/site/publish/docs/community-guide/repro-template.sh?rev=1335624&r1=1335623&r2=1335624&view=diff
==============================================================================
--- subversion/site/publish/docs/community-guide/repro-template.sh (original)
+++ subversion/site/publish/docs/community-guide/repro-template.sh Tue May  8 16:40:23 2012
@@ -16,9 +16,11 @@
 
 # You might need to adjust these lines to point to your
 # compiled-from-source Subversion binaries, if using those:
-SVN=`which svn`
-SVNSERVE=`which svnserve`
-SVNADMIN=`which svnadmin`
+if [ -z "$SVN" ]; then
+  SVN=`which svn`
+  SVNSERVE=`which svnserve`
+  SVNADMIN=`which svnadmin`
+fi
 
 # Use English output.
 LC_ALL=C; export LC_ALL