Skip to content

Commit a57651e

Browse files
arschlesAaron Schlesinger
authored andcommitted
fix(boot.go): fix build
1 parent d2bb167 commit a57651e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

boot.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ type Config struct {
2222

2323
func main() {
2424
var conf Config
25-
if err := envconfig.Process("builder", &config); err != nil {
25+
if err := envconfig.Process("builder", &conf); err != nil {
2626
log.Fatalf("error fetching config [%s]", err)
2727
os.Exit(1)
2828
}
2929
log.Printf("starting fetcher on port %d", conf.FetcherPort)
3030
go fetcher.Serve(conf.FetcherPort)
31-
os.Exit(pkg.Run("boot"))
31+
os.Exit(pkg.Run(conf.SSHHostIP, conf.SSHHostPort, "boot"))
3232
}

0 commit comments

Comments
 (0)