Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
139
Merge Requests
139
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
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
a4909280
Commit
a4909280
authored
Feb 12, 2019
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
submodule support 2
parent
7d28f7b4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
14 deletions
+11
-14
product/ERP5VCS/WorkingCopy.py
product/ERP5VCS/WorkingCopy.py
+11
-14
No files found.
product/ERP5VCS/WorkingCopy.py
View file @
a4909280
...
...
@@ -396,16 +396,6 @@ class BusinessTemplateWorkingCopy(BusinessTemplateFolder):
removed_set
=
set
()
prefix_length
=
len
(
os
.
path
.
join
(
self
.
path
,
''
))
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
self
.
path
):
# Do not remove hidden files and folders.
# This is important as we primarily use ERP5 VCS for Business Templates
# and sometimes they can be in form of git submodule. Removing `.git`
# leads to the case where we want to check from parent repo (i.e. erp5)
# if there is an existence of gitsubmodule and then update it explicitly.
# This ends up taking an extra effort and conflict as the new `.git`
# might have conflicting history depending on when we re-init/udpate
# the submodule
filenames
=
[
f
for
f
in
filenames
if
not
f
[
0
]
==
'.'
]
dirnames
[:]
=
[
d
for
d
in
dirnames
if
not
d
[
0
]
==
'.'
]
dirpath
=
dirpath
[
prefix_length
:]
for
i
in
xrange
(
len
(
dirnames
)
-
1
,
-
1
,
-
1
):
d
=
dirnames
[
i
]
...
...
@@ -417,6 +407,13 @@ class BusinessTemplateWorkingCopy(BusinessTemplateFolder):
removed_set
.
add
(
d
)
del
dirnames
[
i
]
for
f
in
filenames
:
# Do not remove hidden files
# This is important as we primarily use ERP5 VCS for Business Templates
# and sometimes they can be in form of git submodule.
# In case of submodule, `.git` is a file pointing to the directory
# in its parent repo <parent_repo>/.git/modules/<submodule>, hence we
# do not want it to be removed
if
f
[
0
]
!=
'.'
:
f
=
os
.
path
.
join
(
dirpath
,
f
)
if
f
not
in
self
.
file_set
:
os
.
remove
(
os
.
path
.
join
(
self
.
path
,
f
))
...
...
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