get.porter.sh/porter@v1.3.0/mage.go (about)

     1  //go:build ignore
     2  
     3  package main
     4  
     5  import (
     6  	"os"
     7  
     8  	"github.com/magefile/mage/mage"
     9  )
    10  
    11  // This file allows someone to run mage commands without mage installed
    12  // by running `go run mage.go TARGET`.
    13  // See https://magefile.org/zeroinstall/
    14  func main() { os.Exit(mage.Main()) }