From e4bd4773e84db4ad0f85baf51d2740703cfd2841 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Fri, 5 Sep 2008 18:37:00 +0100 Subject: [PATCH] We don't want mercurial -q option when fetching nsc, user feedback is important. --- src/internet-stack/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internet-stack/wscript b/src/internet-stack/wscript index aa8a098a8..06137c3d2 100644 --- a/src/internet-stack/wscript +++ b/src/internet-stack/wscript @@ -9,7 +9,7 @@ def nsc_fetch(): print "Retrieving nsc from " + NETWORK_SIMULATION_CRADLE_REPO if os.system("hg version > /dev/null 2>&1") != 0: Params.fatal("Mercurial not installed, http fallback not yet implemented") - if os.system("hg -q clone " + NETWORK_SIMULATION_CRADLE_REPO) != 0: + if os.system("hg clone " + NETWORK_SIMULATION_CRADLE_REPO) != 0: Params.fatal("hg -q clone %s failed" % NETWORK_SIMULATION_CRADLE_REPO) def nsc_update(): @@ -17,7 +17,7 @@ def nsc_fetch(): Params.warning("Mercurial not installed, not updating nsc source") print "Pulling nsc updates from " + NETWORK_SIMULATION_CRADLE_REPO - if os.system("cd nsc && hg -q pull %s && hg -q update" % NETWORK_SIMULATION_CRADLE_REPO) != 0: + if os.system("cd nsc && hg pull %s && hg update" % NETWORK_SIMULATION_CRADLE_REPO) != 0: Params.warning("Updating nsc using mercurial failed") if not os.path.exists("nsc"):