Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Base Worker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Workers
Base Worker
Commits
ae104d26
Commit
ae104d26
authored
3 years ago
by
Yoann Schneider
Browse files
Options
Downloads
Patches
Plain Diff
fix to include files without extension
parent
4da039dc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!106
fix to include files without extension
Pipeline
#78545
passed
3 years ago
Stage: release
Changes
1
Pipelines
8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arkindex_worker/git.py
+4
-1
4 additions, 1 deletion
arkindex_worker/git.py
with
4 additions
and
1 deletion
arkindex_worker/git.py
+
4
−
1
View file @
ae104d26
...
...
@@ -351,7 +351,10 @@ class GitHelper:
while keeping the same directory structure
"""
file_count
=
0
for
file
in
export_out_dir
.
rglob
(
"
*.*
"
):
file_names
=
[
file_name
for
file_name
in
export_out_dir
.
rglob
(
"
*
"
)
if
file_name
.
is_file
()
]
for
file
in
file_names
:
rel_file_path
=
file
.
relative_to
(
export_out_dir
)
out_file
=
self
.
export_path
/
rel_file_path
if
not
out_file
.
exists
():
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment