On Wed, 2021-03-10 at 15:20 -0800, Matt Mueller wrote:
> I'm assuming this is by design, but it feels to me like go install
> ./cmd/app/main.go silently failing is a bug.
>
> Is this worth opening an issue for?
If it's a bug it's an error reporting bug. The go install command is
documented to take only package paths, not file paths.
```
- Arguments must be package paths or package patterns (with "..." wildcards).
They must not be standard packages (like fmt), meta-patterns (std, cmd,
all), or relative or absolute file paths.
```