Try this
go list ./... | sed 's/.*/echo &; time go vet & /' | sh
-rob
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to golang-nuts+unsubscr...@googlegroups.com.
Have you tried running it under strace or another tool which gives you
insights about a running program??
On Monday, September 30, 2024 at 1:48:53 PM UTC-6 Amnon wrote:
> go vet ./... has recently become very slow on my company's code-base
> taking 20s to complete.
>
> Is there an easy way I can
Perhaps you can do each check separately, that go vet does to find out if
there's a particular check that is slow.
Op maandag 30 september 2024 om 21:48:53 UTC+2 schreef Amnon:
> go vet ./... has recently become very slow on my company's code-base
> taking 20s to complete.
>
> Is there an easy w