Skip to content

Commit 97f8074

Browse files
committed
remove extra quotes
1 parent 0437a69 commit 97f8074

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/run/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ func listRun(opts *ListOptions) error {
121121

122122
for _, run := range runs {
123123
if opts.PlainOutput {
124-
tp.AddField(""+string(run.Status), nil, nil)
124+
tp.AddField(string(run.Status), nil, nil)
125125
tp.AddField(string(run.Conclusion), nil, nil)
126126
} else {
127127
symbol, symbolColor := shared.Symbol(cs, run.Status, run.Conclusion)

0 commit comments

Comments
 (0)