From 97f80740aa98f65c29dedc9924a53aeaeede11a4 Mon Sep 17 00:00:00 2001 From: Gowtham Munukutla Date: Fri, 7 May 2021 11:17:23 +0530 Subject: [PATCH] remove extra quotes --- pkg/cmd/run/list/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/run/list/list.go b/pkg/cmd/run/list/list.go index b7324ccab..fdda7ab13 100644 --- a/pkg/cmd/run/list/list.go +++ b/pkg/cmd/run/list/list.go @@ -121,7 +121,7 @@ func listRun(opts *ListOptions) error { for _, run := range runs { if opts.PlainOutput { - tp.AddField(""+string(run.Status), nil, nil) + tp.AddField(string(run.Status), nil, nil) tp.AddField(string(run.Conclusion), nil, nil) } else { symbol, symbolColor := shared.Symbol(cs, run.Status, run.Conclusion)