From f7b4c9c55a2df0afe60fbd12f38f27aaf68c56e9 Mon Sep 17 00:00:00 2001 From: Richard Case Date: Wed, 11 May 2022 12:21:26 +0100 Subject: [PATCH] fix: after remove cannot build release After changing org the main.go was also moved to the repo root and this broke the release process as it was looking for the main.go in `cmd/fl`. Signed-off-by: Richard Case --- .goreleaser.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index e401a7a..916db22 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -5,7 +5,7 @@ before: builds: - env: - CGO_ENABLED=0 - main: ./cmd/fl + main: . goos: - linux - darwin