From 59a8f34e0e839c5dc2243e7298aa525b499f9d23 Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Sat, 11 Jul 2026 17:35:48 +0200 Subject: [PATCH] chore(config): update gitignore to exclude build artifacts Updates the .gitignore file to ensure that generated package files and local build directories are ignored by Git. This prevents unnecessary binary data from being tracked in the repository history, keeping the project clean. - Ignore pkg directory - Ensure exclusion of tarball packages --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a6ad9cc..f206cdb 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,5 @@ .codex* target -*.pkg.tar.zst \ No newline at end of file +*.pkg.tar.zst +pkg \ No newline at end of file