Skip to content

Commit

Permalink
Merge pull request #54 from Cloud-SH/master
Browse files Browse the repository at this point in the history
fix: remove 'omitempty' of sourcebuild project cmd
  • Loading branch information
lee-yongtak authored Aug 16, 2023
2 parents c198af6 + dcdf38e commit 17da169
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/sourcebuild/project_cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
package sourcebuild

type ProjectCmd struct {
Pre []*string `json:"pre,omitempty"`
Pre []*string `json:"pre"`

Build []*string `json:"build,omitempty"`
Build []*string `json:"build"`

Post []*string `json:"post,omitempty"`
Post []*string `json:"post"`

Dockerbuild *ProjectCmdDockerbuild `json:"dockerbuild,omitempty"`
}

0 comments on commit 17da169

Please sign in to comment.