Skip to content

Commit d133c2d

Browse files
authored
Merge pull request #422 from Dray56/buildpack_stack_pointer
fix: Make stack in buildpack pointer
2 parents 9f33372 + c8dab58 commit d133c2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resource/buildpack.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type Buildpack struct {
44
Name string `json:"name"` // The name of the buildpack; to be used by app buildpack field (only alphanumeric characters)
55
State string `json:"state"` // The state of the buildpack Valid value is: AWAITING_UPLOAD
66
Filename *string `json:"filename"` // The filename of the buildpack, if any
7-
Stack string `json:"stack"` // The name of the stack that the buildpack will use
7+
Stack *string `json:"stack"` // The name of the stack that the buildpack will use
88
Position int `json:"position"` // The order in which the buildpacks are checked during buildpack auto-detection
99
Enabled bool `json:"enabled"` // Whether the buildpack can be used for staging
1010
Locked bool `json:"locked"` // Whether the buildpack is locked to prevent updating the bits

0 commit comments

Comments
 (0)