Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5-Boxiang
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hamza
erp5-Boxiang
Commits
f75b7c3b
Commit
f75b7c3b
authored
Feb 12, 2019
by
Ayush Tiwari
Committed by
Julien Muchembled
Feb 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5VCS: do not remove hidden files on export
parent
20fcbf6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
product/ERP5VCS/WorkingCopy.py
product/ERP5VCS/WorkingCopy.py
+9
-4
No files found.
product/ERP5VCS/WorkingCopy.py
View file @
f75b7c3b
...
...
@@ -407,10 +407,15 @@ class BusinessTemplateWorkingCopy(BusinessTemplateFolder):
removed_set
.
add
(
d
)
del
dirnames
[
i
]
for
f
in
filenames
:
f
=
os
.
path
.
join
(
dirpath
,
f
)
if
f
not
in
self
.
file_set
:
os
.
remove
(
os
.
path
.
join
(
self
.
path
,
f
))
removed_set
.
add
(
f
)
# Ignore hidden files, at least for submodule support.
# e.g. `.git` is a file pointing to the directory in its parent repo
# <parent_repo>/.git/modules/<submodule>
# or `.gitattributes`, etc.
if
f
[
0
]
!=
'.'
:
f
=
os
.
path
.
join
(
dirpath
,
f
)
if
f
not
in
self
.
file_set
:
os
.
remove
(
os
.
path
.
join
(
self
.
path
,
f
))
removed_set
.
add
(
f
)
return
self
.
file_set
,
removed_set
class
File
(
object
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment