mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
cli: Ignore hidden folders in interactive port
Resolves #112 and resolves #57
This commit is contained in:
parent
d4c2bb34eb
commit
fc0358ef01
1 changed files with 2 additions and 0 deletions
|
@ -89,6 +89,8 @@ def listdir_recursive(subdir):
|
|||
for file in files:
|
||||
if file in ["_build", "build"]:
|
||||
continue
|
||||
if file.startswith("."):
|
||||
continue
|
||||
full = os.path.join(subdir, file)
|
||||
if full == "./subprojects":
|
||||
# skip the subprojects directory
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue