atc0005 / todo

A collection of TODO items not specific to any one project
MIT License
0 stars 0 forks source link

Replace `go list .` with `go list -m` in all project Makefiles #46

Closed atc0005 closed 1 year ago

atc0005 commented 1 year ago

When I recently dropped all doc.go files and with this removal Makefiles using go list . to determine the module base path are emitting warnings like this one:

no Go files in /mnt/t/github/check-statuspage

The fix is to replace go list . with go list -m.

This will need to be done for Makefiles in all Go-based projects.

atc0005 commented 1 year ago

AFAIK this work is complete.