diff --git a/builders.py b/builders.py
index 418ef1b..1b65e55 100644
--- a/builders.py
+++ b/builders.py
@@ -81,7 +81,9 @@ def canStartBuild(builder, wfb, request):
 
         bytes_in_gb = 1024 * 1024 * 1024
 
-        cmd = yield shell("findmnt -T %s --df -n --bytes | awk '{print $5}'" % mountpoint, wfb.worker, builder)
+        cmd = yield shell(["findmnt", "-T", mountpoint, "--df", "-n", "--bytes",
+                           "-o", "AVAIL"],
+                          wfb.worker, builder)
         space = int(cmd.stdout.strip())
         if space < threshold * bytes_in_gb:
             log.msg("Detected {0} GB of space available on {1}, less than threshold of {2} GB. Can't start build".format(space / bytes_in_gb, name, threshold))
