You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/packer.go

13 lines
207 B

// This is the main package for the `packer` application.
package main
import (
"github.com/mitchellh/packer/packer"
"os"
)
func main() {
env := packer.NewEnvironment()
os.Exit(env.Cli(os.Args[1:]))
}