Skip to content

Commit

Permalink
Merge pull request #422 from Dray56/buildpack_stack_pointer
Browse files Browse the repository at this point in the history
fix: Make stack in buildpack pointer
  • Loading branch information
sneal authored Jun 24, 2024
2 parents 9f33372 + c8dab58 commit d133c2d
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 d133c2d

Please sign in to comment.