mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-09 13:36:56 +02:00
This trivial PR fixes a minor cosmetic issue in the `check` command. Before this fix, GoReleaser would not show the auto-detected config path under check when no args are provided: ``` $ goreleaser check • checking path= • 1 configuration file(s) validated • thanks for using goreleaser! ``` After this check, GoReleaser correctly shows any auto-detected config paths: ``` $ goreleaser check • checking path=.goreleaser.yaml • 1 configuration file(s) validated • thanks for using goreleaser! ```