svn: /web/doc-editor/trunk/php/ SvnClient.php
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Fri, 22 Jul 2011 20:28:26 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=313607
Log:
Set svn:ignore entities.*.xml when we commit a new folder. R.Quadling will have less work to do on this ;)
Changed paths:
U web/doc-editor/trunk/php/SvnClient.php
Modified: web/doc-editor/trunk/php/SvnClient.php
===================================================================
--- web/doc-editor/trunk/php/SvnClient.php 2011-07-22 20:06:52 UTC (rev 313606)
+++ web/doc-editor/trunk/php/SvnClient.php 2011-07-22 20:28:26 UTC (rev 313607)
@@ -491,6 +491,7 @@
$commands = array(
new ExecStatement('cd %s', array($appConf[$project]['vcs.path'])),
new ExecStatement('svn add --non-recursive %s', array($path)),
+ new ExecStatement('svn propset svn:ignore "entities.*.xml" %s', array($path));
new ExecStatement('svn ci --no-auth-cache --non-interactive -m "Add new folder from Php Docbook Online Editor" --username %s --password %s %s 2>&1', array($vcsLogin, $vcsPasswd, $path))
);