From e8ed3b9e23a8bda8caa95b1ad7a10c9f4d3acdff Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 17 Dec 2024 17:35:16 -0800 Subject: [PATCH] chore: Add comment about copying practice subdirs --- benchmark/benchmark.py | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py index ca6d263a8..c713a94f8 100755 --- a/benchmark/benchmark.py +++ b/benchmark/benchmark.py @@ -289,6 +289,7 @@ def main( dirname.rename(dest) if not dirname.exists(): + # only copy the practice subdirs with the exercises ai! print(f"Copying {original_dname} -> {dirname} ...") shutil.copytree(original_dname, dirname) print("...done")