From 9642e1068d1a5448a414304e8472741aee14df9c Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Sun, 12 Jul 2020 23:56:47 -0400 Subject: [PATCH] allow subfolders in project_euler folder --- .github/workflows/awesome_workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/awesome_workflow.yml b/.github/workflows/awesome_workflow.yml index 133688f4..60cd98c5 100644 --- a/.github/workflows/awesome_workflow.yml +++ b/.github/workflows/awesome_workflow.yml @@ -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")