From 16829ae7823eed52f85706ecb5cb5598a53f8f30 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sat, 17 Jan 2009 18:05:10 +0000 Subject: [PATCH] Added messages to explain the compile process --- zeroinstall/0launch-gui/compile.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zeroinstall/0launch-gui/compile.py b/zeroinstall/0launch-gui/compile.py index cfcf1cf..ea16e92 100644 --- a/zeroinstall/0launch-gui/compile.py +++ b/zeroinstall/0launch-gui/compile.py @@ -73,6 +73,7 @@ def compile(policy, interface): # Do the whole build-and-register-feed c = Command() c.run(("0launch", + '--message', 'Download the 0compile tool, to compile the source code', '--not-before=' + min_version, "http://0install.net/2006/interfaces/0compile.xml", 'gui', @@ -81,4 +82,6 @@ def compile(policy, interface): # Prompt user to choose source version c = Command() - c.run(['0launch', '--gui', '--source', '--download-only', interface.uri], build) + c.run(['0launch', + '--message', 'Download the source code to be compiled', + '--gui', '--source', '--download-only', interface.uri], build) -- 2.11.4.GIT