Skip to content

Commit

Permalink
chore: update error message for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
sweatybridge committed Oct 16, 2024
1 parent 1183979 commit 1a8b72d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ func (c *config) Load(path string, fsys fs.FS) error {
fmt.Fprintf(os.Stderr, "WARN: project_id is missing for [remotes.%s]\n", name)
}
if err := base.Validate(fsys); err != nil {
return errors.Errorf("invalid remote config %s: %w", name, err)
return errors.Errorf("invalid config for [remotes.%s]: %w", name, err)
}
c.Remotes[name] = base
}
Expand Down

0 comments on commit 1a8b72d

Please sign in to comment.