From c02687706608da40470a486b0629b31153b273fc Mon Sep 17 00:00:00 2001
From: thewilkybarkid <chriswilkinson84@gmail.com>
Date: Wed, 6 Nov 2013 13:26:24 +0000
Subject: [PATCH] Show Drush activity

---
 make.php | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/make.php b/make.php
index 0070ce1..bc79c75 100644
--- a/make.php
+++ b/make.php
@@ -48,7 +48,12 @@ foreach ($profiles as $profile) {
 
   $make->setTimeout(NULL);
 
-  if ($make->run() > 0) {
+  if ($make->run(
+      function ($type, $buffer) {
+        echo $buffer;
+      }
+    ) > 0
+  ) {
     throw new Exception('Failed to run command: ' . $make->getCommandLine());
   }
 
-- 
GitLab