From 22b51716adecf4c2c78d0bea4dabd5937a8f29b2 Mon Sep 17 00:00:00 2001 From: Nick Hale <4175918+njhale@users.noreply.github.com> Date: Mon, 4 Mar 2024 10:28:19 -0500 Subject: [PATCH] chore: add releases to gitignore Add the releases directory to the .gitignore to prevent runtime/debug from detecting a modified source tree when built via goreleaser. Before this change, binaries built from tagged releases would return incorrect version info with a '-dirty' suffix. Signed-off-by: Nick Hale <4175918+njhale@users.noreply.github.com> --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 73f4d464..c463dc84 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ **/package-lock.json **/__pycache__ /docs/yarn.lock +/releases +/checksums.txt