Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion buildozer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,8 @@ def _copy_application_sources(self):

for root, dirs, files in walk(source_dir, followlinks=True):
# avoid hidden directory
if True in [x.startswith('.') for x in root.split(sep)]:
rel_path = root[len(source_dir):].lstrip(sep)
if rel_path and True in [x.startswith('.') for x in rel_path.split(sep)]:
continue

# need to have sort-of normalization. Let's say you want to exclude
Expand Down
Loading