grim/convey

Fix the order of some attributes
redux
2021-10-16, Gary Kramlich
9d3b752261c4
Parents 0accac3db806
Children 6abd7f123bd6
Fix the order of some attributes
--- a/docker/build.go Sat Oct 16 04:58:46 2021 -0500
+++ b/docker/build.go Sat Oct 16 04:59:06 2021 -0500
@@ -13,13 +13,13 @@
)
type Build struct {
+ Arguments yaml.StringOrSlice `yaml:"arguments"`
Dockerfile string `yaml:"dockerfile"`
Files yaml.StringOrSlice `yaml:"files"`
+ Labels yaml.StringOrSlice `yaml:"labels"`
Tag string `yaml:"tag"`
Tags yaml.StringOrSlice `yaml:"tags"`
Target string `yaml:"target"`
- Labels yaml.StringOrSlice `yaml:"labels"`
- Arguments yaml.StringOrSlice `yaml:"arguments"`
realBuild *podman.Build
}