cli: Ignore hidden folders in interactive port

Resolves #112 and resolves #57
This commit is contained in:
Sonny Piers 2023-05-07 02:48:02 +02:00
parent d4c2bb34eb
commit fc0358ef01

View file

@ -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