You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by jo...@apache.org on 2012/03/07 04:38:13 UTC

svn commit: r1297853 - /subversion/trunk/tools/server-side/svnpubsub/svnwcsub.py

Author: joes
Date: Wed Mar  7 03:38:12 2012
New Revision: 1297853

URL: http://svn.apache.org/viewvc?rev=1297853&view=rev
Log:
* svnwcsub.py - drop --config-dir options as we now properly pass env

Modified:
    subversion/trunk/tools/server-side/svnpubsub/svnwcsub.py

Modified: subversion/trunk/tools/server-side/svnpubsub/svnwcsub.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/server-side/svnpubsub/svnwcsub.py?rev=1297853&r1=1297852&r2=1297853&view=diff
==============================================================================
--- subversion/trunk/tools/server-side/svnpubsub/svnwcsub.py (original)
+++ subversion/trunk/tools/server-side/svnpubsub/svnwcsub.py Wed Mar  7 03:38:12 2012
@@ -110,8 +110,6 @@ class WorkingCopy(object):
             logging.info("autopopulate %s from %s" % (self.path, self.url))
             subprocess.check_call([svnbin, 'co', '-q',
                                    '--non-interactive',
-                                   '--config-dir',
-                                   '/home/svnwc/.subversion',
                                    '--', self.url, self.path],
                                   env=env)
 
@@ -261,7 +259,6 @@ class BackgroundWorker(threading.Thread)
         ### still specific to the ASF setup.
         args = [self.svnbin, 'update',
                 '--quiet',
-                '--config-dir', '/home/svnwc/.subversion',
                 '--non-interactive',
                 '--trust-server-cert',
                 '--ignore-externals',
@@ -278,7 +275,6 @@ class BackgroundWorker(threading.Thread)
         ### we need to move some of these args into the config. these are
         ### still specific to the ASF setup.
         args = [self.svnbin, 'cleanup',
-                '--config-dir', '/home/svnwc/.subversion',
                 '--non-interactive',
                 '--trust-server-cert',
                 wc.path]