Skip to content

Commit

Permalink
feat: run mage without needing to install binary
Browse files Browse the repository at this point in the history
  • Loading branch information
hmerritt committed Mar 13, 2024
1 parent 0469659 commit cd389d4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions mage.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//go:build ignore
// +build ignore

package main

import (
"os"

"github.com/magefile/mage/mage"
)

func main() { os.Exit(mage.Main()) }

0 comments on commit cd389d4

Please sign in to comment.