Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ericzzzzzzz committed Apr 7, 2024
1 parent 429716d commit 7b0282b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/entrypoint/entrypointer.go
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ func parseArtifactTemplate(template string) (ArtifactTemplate, error) {
template = strings.TrimSuffix(strings.TrimPrefix(template, "$("), ")")
split := strings.Split(template, ".")
at := ArtifactTemplate{
ContainerName: "step-%s" + split[1],
ContainerName: "step-" + split[1],
Type: split[2],
}
if len(split) == 4 {
Expand Down

0 comments on commit 7b0282b

Please sign in to comment.