Skip to content

Commit

Permalink
releaser: Ignore openbsd/arm
Browse files Browse the repository at this point in the history
It is failing with "undefined: Flock_t".
  • Loading branch information
bep committed Jul 10, 2017
1 parent 44b8f74 commit 195f945
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ build:
- 386
- arm
- arm64
ignore:
- goos: openbsd
goarch: arm
goarm: 6

fpm:
formats:
- deb
Expand Down
2 changes: 1 addition & 1 deletion releaser/releaser.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ func (r *ReleaseHandler) release(releaseNotesFile string) error {
return nil
}

cmd := exec.Command("goreleaser", "--release-notes", releaseNotesFile, "--skip-publish="+fmt.Sprint(r.skipPublish))
cmd := exec.Command("goreleaser", "--rm-dist", "--release-notes", releaseNotesFile, "--skip-publish="+fmt.Sprint(r.skipPublish))
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
Expand Down

0 comments on commit 195f945

Please sign in to comment.