fix(gcp): align default template with az and aws

relates to #2810
This commit is contained in:
Jan De Dobbeleer 2022-09-20 19:51:59 +02:00 committed by Jan De Dobbeleer
parent 000ef40009
commit 0e25f1613c

View file

@ -21,7 +21,7 @@ type Gcp struct {
}
func (g *Gcp) Template() string {
return " {{ if .Error }}{{ .Error }}{{ else }}{{ .Project }}{{ end }} "
return " {{ if not .Error }}{{ .Project }}{{ end }} "
}
func (g *Gcp) Init(props properties.Properties, env environment.Environment) {