Skip to content

Commit

Permalink
fix: Make stack in buildpack pointer
Browse files Browse the repository at this point in the history
Signed-off-by: Ray <[email protected]>
  • Loading branch information
Dray56 authored and debTheRay committed Jun 20, 2024
1 parent a5dc9be commit c8dab58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resource/buildpack.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type Buildpack struct {
Name string `json:"name"` // The name of the buildpack; to be used by app buildpack field (only alphanumeric characters)
State string `json:"state"` // The state of the buildpack Valid value is: AWAITING_UPLOAD
Filename *string `json:"filename"` // The filename of the buildpack, if any
Stack string `json:"stack"` // The name of the stack that the buildpack will use
Stack *string `json:"stack"` // The name of the stack that the buildpack will use
Position int `json:"position"` // The order in which the buildpacks are checked during buildpack auto-detection
Enabled bool `json:"enabled"` // Whether the buildpack can be used for staging
Locked bool `json:"locked"` // Whether the buildpack is locked to prevent updating the bits
Expand Down

0 comments on commit c8dab58

Please sign in to comment.