github.com/rochacon/deis@v1.0.2-0.20150903015341-6839b592a1ff/builder/cli/builder.go (about) 1 package main 2 3 import ( 4 "os" 5 "runtime" 6 7 "github.com/deis/deis/builder" 8 ) 9 10 func main() { 11 runtime.GOMAXPROCS(runtime.NumCPU()) 12 os.Exit(builder.Run("boot")) 13 }