From e6d335aa4017b72285a309a46290d3e1b4b6f396 Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Thu, 6 Mar 2014 06:47:29 +0100 Subject: [PATCH] Make the cloning direcotory explicit on stdout. --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 3cba688..948600c 100755 --- a/test.py +++ b/test.py @@ -108,11 +108,11 @@ def plugin_cache_dir(): def clone_plugin(plugin): """Clone the given plugin into our plugin directory.""" dirname = os.path.join(plugin_cache_dir(), os.path.basename(plugin)) + print("Cloning %s -> %s" % (plugin, dirname)) if os.path.exists(dirname): print("Skip cloning of %s. Already there." % plugin) return create_directory(dirname) - print("Cloning %s." % plugin) subprocess.call(["git", "clone", "--recursive", "--depth", "1", "https://github.com/%s" % plugin, dirname])