Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ archives:
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else if eq .Arch "ppc64le" }}ppy64le
{{- else }}{{ .Arch }}{{ end }}
wrap_in_directory: true
format_overrides:
Expand Down Expand Up @@ -48,6 +49,7 @@ nfpms:
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else if eq .Arch "ppc64le" }}ppy64le
{{- else }}{{ .Arch }}{{ end }}

vendor: CYBERTEC PostgreSQL International GmbH
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ install:
DESTDIR=tmp

package:
goreleaser release --snapshot --skip-publish --rm-dist
goreleaser release --snapshot --skip=publish --clean

clean:
$(RM) vip-manager
$(RM) -r dist
$(RM) -r $(DESTDIR)
$(RM) -r $(DESTDIR)
Loading