From 84cc48b2a08ad10ba62defa6cfb59023c75eab2a Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 12 Sep 2002 21:11:16 +0000 Subject: [PATCH] Report the bundle we're generating (still not excellent progress reporting, but better than none at all). git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1674 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/cast/bundle/tools/ComponentBundlerTask.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/cast/bundle/tools/ComponentBundlerTask.java b/src/java/com/threerings/cast/bundle/tools/ComponentBundlerTask.java index c93345fc6..e3e97985d 100644 --- a/src/java/com/threerings/cast/bundle/tools/ComponentBundlerTask.java +++ b/src/java/com/threerings/cast/bundle/tools/ComponentBundlerTask.java @@ -1,5 +1,5 @@ // -// $Id: ComponentBundlerTask.java,v 1.12 2002/09/11 19:31:40 mdb Exp $ +// $Id: ComponentBundlerTask.java,v 1.13 2002/09/12 21:11:16 mdb Exp $ package com.threerings.cast.bundle.tools; @@ -127,6 +127,8 @@ public class ComponentBundlerTask extends Task // load up our component ID broker ComponentIDBroker broker = loadBroker(_mapfile); + System.out.println("Generating " + _target.getPath() + "..."); + try { // make sure we can create our bundle file FileOutputStream fout = new FileOutputStream(_target);