Skip to content

Commit

Permalink
bump version and fix artifact pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
yitsushi committed May 1, 2021
1 parent a46ef71 commit c8cd065
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion command/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func (c *Update) Execute(opts *commander.CommandHelper) {
}

func (c *Update) buildFilename(version string) string {
return fmt.Sprintf("%s_%s_%s_%s.tar.gz", info.AppName, version, runtime.GOOS, runtime.GOARCH)
return fmt.Sprintf("%s-%s-%s-%s.tar.gz", info.AppName, version, runtime.GOOS, runtime.GOARCH)
}

func (c *Update) downloadBinary(uri string) {
Expand Down
2 changes: 1 addition & 1 deletion info/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ const AppRepoOwner string = "yitsushi"
const AppName string = "totp-cli"

// AppVersion defined current version of this application.
const AppVersion string = "v1.1.9"
const AppVersion string = "v1.1.13"

0 comments on commit c8cd065

Please sign in to comment.