show build block name and source name if possible

This commit is contained in:
Adrien Delorme 2020-06-02 11:43:27 +02:00
parent b4aa71aef2
commit 3c5a1e5878
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ type CoreBuildProvisioner struct {
// Returns the name of the build.
func (b *CoreBuild) Name() string {
if b.BuildName != "" {
return b.BuildName
return b.BuildName + "." + b.Type
}
return b.Type
}