Skip to content

Commit

Permalink
Merge branch 'release/0.0.1-beta'
Browse files Browse the repository at this point in the history
  • Loading branch information
axllent committed Jul 29, 2022
2 parents a3b34ec + 0799a6d commit 493e8a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ jobs:
binary_name: "mailpit"
asset_name: mailpit-${{ matrix.goos }}-${{ matrix.goarch }}
extra_files: LICENSE README.md
md5sum: false
ldflags: -w -X "github.com/axllent/mailpit/cmd.Version=${{ steps.tag.outputs.tag }}"
2 changes: 1 addition & 1 deletion updater/updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ func GithubUpdate(repo, appName, currentVersion string) (string, error) {

// ensure the new binary is executable (mainly for inconsistent darwin builds)
/* #nosec G204 */
cmd := exec.Command(newExec)
cmd := exec.Command(newExec, "-h")
if err := cmd.Run(); err != nil {
return "", err
}
Expand Down

0 comments on commit 493e8a0

Please sign in to comment.