From 38fdac927a56544283142b5329b0d524a9d6bb79 Mon Sep 17 00:00:00 2001 From: Eoin McAfee Date: Thu, 23 Sep 2021 14:43:07 +0100 Subject: [PATCH] fixes issue where template info command wasn't working --- drone/template/template_info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drone/template/template_info.go b/drone/template/template_info.go index 8e1a26e..909e033 100644 --- a/drone/template/template_info.go +++ b/drone/template/template_info.go @@ -61,6 +61,6 @@ func templateInfo(c *cli.Context) error { return tmpl.Execute(os.Stdout, templates) } -var tmplTemplateInfoList = "\x1b[33m{{ .Name }} \x1b[0m" + "\x1b [33m{{ .Namespace }} \x1b[0m" + ` +var tmplTemplateInfoList = "\x1b[33m{{ .Name }} \x1b[0m" + ` Data: {{ .Data }} `