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.
pull/2552/head
simnv 6 years ago committed by GitHub
parent 987067cbfa
commit 766b08078e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      .gitignore

1
.gitignore vendored

@ -4,6 +4,7 @@
.cache
*.output
*.tgz
*.exe
requirements.lock
mixin/vendor/
cmd/loki/loki

Loading…
Cancel
Save