Skip to content

Commit

Permalink
Fix inheriting postCreateCommand from container metadata (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronlehmann authored Jan 12, 2024
1 parent 657306c commit eb069e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion envbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ func Run(ctx context.Context, options Options) error {
scripts.UpdateContentCommand = container.UpdateContentCommand
}
if !container.PostCreateCommand.IsEmpty() {
scripts.OnCreateCommand = container.OnCreateCommand
scripts.PostCreateCommand = container.PostCreateCommand
}
if !container.PostStartCommand.IsEmpty() {
scripts.PostStartCommand = container.PostStartCommand
Expand Down

0 comments on commit eb069e4

Please sign in to comment.