Commit e22fcc5f authored by Julien Muchembled's avatar Julien Muchembled

ERP5Subversion: do not delete existing ignored files when extracting BT

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41137 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6534c1cc
...@@ -949,7 +949,7 @@ class SubversionTool(BaseTool): ...@@ -949,7 +949,7 @@ class SubversionTool(BaseTool):
# Dicts to track svn status in case it is not consistent with existing # Dicts to track svn status in case it is not consistent with existing
# files and directories # files and directories
versioned_dict = dict((x.getPath(), x) for x in client.status('.') versioned_dict = dict((x.getPath(), x) for x in client.status('.')
if x.getIsVersioned()) if str(x.getTextStatus()) not in ('ignored', 'unversioned'))
del versioned_dict['.'] del versioned_dict['.']
added_set = set() added_set = set()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment