From 03a47fffbd06ee6e7e180f0f400d7b7c56bd8441 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 19 Jun 2024 10:19:21 +0200 Subject: [PATCH] chore: update .gitignore to include dist directory Added trailing slash to "dist" in .gitignore to properly ignore the directory instead of any file named "dist". This ensures that all build artifacts are excluded from version control. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1d397f7..c2f4d3d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ venv/ *.pyc __pycache__/ -dist/ \ No newline at end of file +/dist/ \ No newline at end of file