We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 948ebeb + bfedd74 commit bc69a84Copy full SHA for bc69a84
internal/assets/contents/shells/zshrc_global.sh
@@ -8,4 +8,4 @@ export {{$K}}="{{$V}}:$PATH"
8
{{- else}}
9
export {{$K}}="{{$V}}"
10
{{- end}}
11
-{{- end}}
+{{- end}}
pkg/buildplan/artifact.go
@@ -124,11 +124,7 @@ func (a Artifacts) ToIDSlice() []strfmt.UUID {
124
func (a Artifacts) ToNameMap() ArtifactNameMap {
125
result := make(map[string]*Artifact, len(a))
126
for _, a := range a {
127
- name := a.DisplayName
128
- if len(a.Ingredients) == 0 {
129
- name = a.Ingredients[0].Name
130
- }
131
- result[name] = a
+ result[a.Name()] = a
132
}
133
return result
134
0 commit comments