summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorCG Linden <cg@lindenlab.com>2009-11-15 11:39:00 -0800
committerCG Linden <cg@lindenlab.com>2009-11-15 11:39:00 -0800
commit6b47e36b159a0e036beb442b82b1356aa756f152 (patch)
treedfb5ac076972a49fed908fee5e87f97df55334a3 /indra
parent853faf531672a230c3bf7b4ed3069e0b6c2f6349 (diff)
Add some debug output to develop.py
Diffstat (limited to 'indra')
-rwxr-xr-xindra/develop.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/develop.py b/indra/develop.py
index 3040b312ba..05ad12f20e 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -585,7 +585,9 @@ class WindowsSetup(PlatformSetup):
'''Run a program. If the program fails, raise an exception.'''
while retries:
retries = retries - 1
+ print "develop.py tries to run:", command
ret = os.system(command)
+ print "got ret", ret, "from", command
if ret:
if name is None:
name = command.split(None, 1)[0]