From a4fe7cd8c8a03ec10acc5700d6f35a576d883c6e Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 29 Oct 2025 13:48:53 -0400 Subject: [PATCH] Make .gitignore more correct Currently, the directory names aren't prefixed with /. This could cause an issue in Git where another directory with one of the listed names could potentially be ignored. --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e5cdb39..211f0f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -out/ -out-light/ +/out/ +/out-light/