remove extra quotes

This commit is contained in:
Gowtham Munukutla 2021-05-07 11:17:23 +05:30
parent 0437a69967
commit 97f80740aa

View file

@ -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)