Skip to content

Commit

Permalink
Fix incorrect append argument
Browse files Browse the repository at this point in the history
Signed-off-by: Josh W Lewis <josh.lewis@salesforce.com>
  • Loading branch information
joshwlewis committed Feb 26, 2024
1 parent 03cfdef commit 7a5d93b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/buildpack/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ func (b *PackageBuilder) resolvedStacks() []dist.Stack {
bpdStacks := bp.Descriptor().Stacks()
if len(bpdStacks) == 0 && len(bpd.Order()) == 0 {
// For non-meta-buildpacks using targets, not stacks: assume any stack
bpdStacks = append(stacks, dist.Stack{ID: "*"})
bpdStacks = append(bpdStacks, dist.Stack{ID: "*"})
}

if len(stacks) == 0 {
Expand Down

0 comments on commit 7a5d93b

Please sign in to comment.