mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
allow subfolders in project_euler folder
This commit is contained in:
parent
d19a3a7bc8
commit
9642e1068d
2
.github/workflows/awesome_workflow.yml
vendored
2
.github/workflows/awesome_workflow.yml
vendored
@ -142,7 +142,7 @@ jobs:
|
||||
print(f"{len(space_files)} files contain space or dash characters:")
|
||||
print("\n".join(space_files) + "\n")
|
||||
|
||||
nodir_files = [file for file in cpp_files if file.count(os.sep) != 1]
|
||||
nodir_files = [file for file in cpp_files if file.count(os.sep) != 1 and "project_euler" not in file]
|
||||
if nodir_files:
|
||||
print(f"{len(nodir_files)} files are not in one and only one directory:")
|
||||
print("\n".join(nodir_files) + "\n")
|
||||
|
Loading…
Reference in New Issue
Block a user