paths
Some checks failed
/ job (push) Failing after 12m22s

This commit is contained in:
Marc Beninca 2024-05-30 00:46:05 +02:00
parent e191f3cc4d
commit 60dc1a3495
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -15,14 +15,14 @@ def cd_browse_workspace():
{project.root} {project.root}
''', end=str()) ''', end=str())
files = [] paths = []
for directory, directories, files in os.walk(project.root): for directory, directories, files in os.walk(project.root):
for file in files: for file in files:
absolute_path = os.path.join(directory, file) absolute_path = os.path.join(directory, file)
relative_path = os.path.relpath(absolute_path, start=project.root) relative_path = os.path.relpath(absolute_path, start=project.root)
files.append(relative_path) paths.append(relative_path)
for file in files: for path in paths:
print(file) print(path)
def cd_clone_branch(): def cd_clone_branch():