From 3c1fd84dc24d705720d5635020758ce372470476 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Tue, 19 Apr 2005 19:26:33 +0000 Subject: [PATCH] flush any output before we run. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278150 13f79535-47bb-0310-9956-ffa450edef68 --- src/script/runant.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/script/runant.py b/src/script/runant.py index c7b53b692..05fd1f972 100644 --- a/src/script/runant.py +++ b/src/script/runant.py @@ -95,6 +95,7 @@ cmdline = ('%s %s -classpath %s -Dant.home=%s %s ' + \ if debug: print '\n%s\n\n' % (cmdline) +sys.stdout.flush() # Run the biniou! os.system(cmdline)