From 766b08078e24484f81e57cdc32f956684cfdfc32 Mon Sep 17 00:00:00 2001 From: simnv Date: Tue, 25 Aug 2020 18:31:37 +0500 Subject: [PATCH] Ignore .exe files build for Windows (#2549) When building Loki on Windows with `go build ./cmd/loki` command, it creates file `/loki.exe`, but .gitignore has only `/loki`. Same with `promtail.exe`, `logcli.exe` and `loki-canary.exe`. Also it is safe to assume that no `.exe` files should be tracked by git in Loki. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d1934999fa..cad600f50b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ .cache *.output *.tgz +*.exe requirements.lock mixin/vendor/ cmd/loki/loki