Jack Lindamood
Jack Lindamood
Super important! /remove-lifecycle stale
I think we will probably do this as the v4 library. Discussing in https://github.com/cep21/circuit/issues/115 Will close as stale since it's been a while and probably won't make it into the...
Will close as wontfix for v3 since we cannot break people's code, but will address in v4 here: #115
I believe the difference is that mage.go is `package main`, but there is no `func main`. Because the code isn't valid Go, the `go get` fails.
Here is a series of console commands ``` < go get -u -tags mage ./... # github.com/company/project runtime.main_main·f: function main is undeclared in the main package ``` ``` mv /tmp/dummy.go...
The command `go mod tidy` is working fine without removing anything for me. I wonder if it's a recent go feature.
This workaround fixed the problem of no build if using mage for non go projects. ``` go get -d -u -tags mage ./... ```
Yes. The only follow up may be to document this somewhere for people using mage for non go stuff. Can close.
My current workaround is to add this to my run ``` # These lines work around this bug: https://github.com/cli/cli/issues/5906 mkdir -p /tmp/useless cd /tmp/useless git init git remote add origin...
22k stars shows there is a community need for something like this. I understand the "it depends" camp for complex projects, but there are guidelines that most people can agree...