Skip to content

Commit

Permalink
Don't show comma on running modal
Browse files Browse the repository at this point in the history
  • Loading branch information
nakabonne committed May 13, 2020
1 parent 2e2097c commit 432c8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/golangcilint/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (r *Runner) ArgsString() string {
return "./..."
}
for _, arg := range r.Args {
paths += arg + ", "
paths += arg + " "
}
return paths
}
Expand Down

0 comments on commit 432c8d8

Please sign in to comment.