From 0ad95db253540ca494eb8e9c3832687b1b0813b9 Mon Sep 17 00:00:00 2001 From: David Dollar Date: Sun, 31 Jul 2016 23:37:03 -0400 Subject: [PATCH] fix typo --- api/controllers/builds.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/controllers/builds.go b/api/controllers/builds.go index 0d11fc4ca2..fa6df3d3fa 100644 --- a/api/controllers/builds.go +++ b/api/controllers/builds.go @@ -249,7 +249,7 @@ func BuildLogs(ws *websocket.Conn) *httperr.Error { // in production loop through docker hosts that the rack is running on // to find the build - if os.Getenv("DEVELOPMENT") != "truee" { + if os.Getenv("DEVELOPMENT") != "true" { h, err := findBuildHost(build) if err != nil { return httperr.Server(err)