浏览代码

Have launch flush its output so that it can be grepped, etc.

Ian Goldberg 1 年之前
父节点
当前提交
deaa5adc41
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      App/launch

+ 1 - 1
App/launch

@@ -34,7 +34,7 @@ def launch(node, manifest, config):
         line = proc.stdout.readline()
         if not line:
             break
-        print(node + ": " + line.decode('utf-8'), end='')
+        print(node + ": " + line.decode('utf-8'), end='', flush=True)
 
 
 if __name__ == "__main__":