From c9676c79d17a1147950adea1173f231bf1ba60d0 Mon Sep 17 00:00:00 2001 From: Tonis Tiigi Date: Thu, 30 Apr 2020 13:41:49 -0700 Subject: [PATCH] bake: fix hcl tags Signed-off-by: Tonis Tiigi --- bake/bake.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bake/bake.go b/bake/bake.go index 2f5479be..9608eed6 100644 --- a/bake/bake.go +++ b/bake/bake.go @@ -348,8 +348,8 @@ type Target struct { SSH []string `json:"ssh,omitempty" hcl:"ssh,optional"` Platforms []string `json:"platforms,omitempty" hcl:"platforms,optional"` Outputs []string `json:"output,omitempty" hcl:"output,optional"` - Pull bool `json:"pull,omitempty": hcl:"pull,optional"` - NoCache bool `json:"no-cache,omitempty": hcl:"no-cache,optional"` + Pull bool `json:"pull,omitempty" hcl:"pull,optional"` + NoCache bool `json:"no-cache,omitempty" hcl:"no-cache,optional"` // IMPORTANT: if you add more fields here, do not forget to update newOverrides and README. }