From db90ec1160e889468ce00c701f9b1c8947370351 Mon Sep 17 00:00:00 2001 From: Josh Humphries Date: Tue, 5 Jan 2021 12:39:34 -0500 Subject: [PATCH] go 1.15 no longer supports darwin/386; ignore any IDE config folder --- .gitignore | 1 + .goreleaser.yml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 53fe3b5..1faa9a6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ dist/ +.idea/ VERSION diff --git a/.goreleaser.yml b/.goreleaser.yml index b3074ca..22cee29 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -8,6 +8,9 @@ builds: goarch: - amd64 - 386 + ignore: + - goos: freebsd + goarch: arm64 ldflags: - -s -w -X main.version=v{{.Version}}