Skip to content

Commit

Permalink
run mise in verbose mode
Browse files Browse the repository at this point in the history
  • Loading branch information
coffee-cup committed Jan 30, 2025
1 parent 8a863f8 commit e51cd75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/mise/mise.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func New(cacheDir string) (*Mise, error) {
// GetLatestVersion gets the latest version of a package matching the version constraint
func (m *Mise) GetLatestVersion(pkg, version string) (string, error) {
query := fmt.Sprintf("%s@%s", pkg, strings.TrimSpace(version))
output, err := m.runCmd("latest", query)
output, err := m.runCmd("latest", "--verbose", query)
if err != nil {
return "", err
}
Expand Down

0 comments on commit e51cd75

Please sign in to comment.