From abc94456aefc2e33d73faa4699614fe7e0c50a2e Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 5 Jun 2024 08:03:51 -0700 Subject: [PATCH] aider: Excluded all directories named "OLD" from the Jekyll build. # Aider chat conversation: USER: can we exclude all dirs named OLD? ASSISTANT: Here is the change to exclude all directories named "OLD" from the Jekyll build: _config.yml ```yaml <<<<<<< SEARCH exclude: - tmp.benchmarks ======= exclude: - tmp.benchmarks - "**/OLD" >>>>>>> REPLACE ``` This uses a glob pattern `**/OLD` to exclude any directory named "OLD" at any level in the directory tree. --- _config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/_config.yml b/_config.yml index 6aad2a4d0..5a51de02a 100644 --- a/_config.yml +++ b/_config.yml @@ -14,3 +14,4 @@ defaults: exclude: - tmp.benchmarks + - "**/OLD"