From 7a2dca9c538ab52bf901714ad3fa6561ce6ddbae Mon Sep 17 00:00:00 2001 From: Charlton Austin Date: Fri, 4 Nov 2016 15:53:43 -0400 Subject: [PATCH] Moving the binary location. --- buildman/manager/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildman/manager/executor.py b/buildman/manager/executor.py index 1f25dddb2..7066f6087 100644 --- a/buildman/manager/executor.py +++ b/buildman/manager/executor.py @@ -271,7 +271,7 @@ class PopenExecutor(BuilderExecutor): } logpipe = LogPipe(logging.INFO) - spawned = subprocess.Popen(os.environ.get("BUILDER_BINARY_LOCATION",'/usr/local/quay-builer'), + spawned = subprocess.Popen(os.environ.get("BUILDER_BINARY_LOCATION", '/usr/local/bin/quay-builder'), stdout=logpipe, stderr=logpipe, env=builder_env)