mage icon indicating copy to clipboard operation
mage copied to clipboard

a Make/rake-like dev tool using Go

Results 132 mage issues
Sort by recently updated
recently updated
newest added

I have something like this: > my/repo/mage ``` . ├── README.md ├── go.mod ├── go.sum ├── magefile.go └── targets ├── docker │   └── docker.go ├── kubernetes │   ├── kubernetes.go │  ...

https://github.com/magefile/mage/blob/v1.9.0/sh/cmd.go#L129 executes a log statement that cannot be overridden. The only means of stopping this would be to call `log.SetOutput()` and modify this globally. It would be nice if `sh/`...

## Description This is a feature request to have the globally installed `mage` passthru to the compiled binary file if, for instance an ENV variable is set, or a local...

Hi, is there a way to enable code completion in JetBrain's GoLand IDE? I have a `magefile.go` and also the project has a `go.mod` file. I can't get the IntelliSense...

The generated mage_output_file.go uses imports like "log" which can easily conflict with global variables in a user's magefile, so we should name them something unlikely to collide with people's own...

:sparkles: enhancement
:hatching_chick: good first issue

I'm trying to use Mage on a package which does not compile and I think it's a valid scenario where it would be great it Mage has worked somehow. Scenario:...

Currently, `mage` will fail if you try to run it multiple times at the same time in the same directory. It will clobber the `mage_output_file.go` it writes. This can be...

:rocket: future-maybe

There are always desired features or functionality that either need time to fully bake before inclusion or don't really belong in the core of a project like mage. One way...

I was helping a coworker to debug an issue with mage and we found that that it was a `go path issue`, but the output of mage was not really...