summaryrefslogtreecommitdiff
path: root/indra/develop.py
diff options
context:
space:
mode:
authorRick Pasetto <rick@lindenlab.com>2009-11-19 09:28:35 -0800
committerRick Pasetto <rick@lindenlab.com>2009-11-19 09:28:35 -0800
commit51e640e5d753ac9dc005cd6827db77988a04b8fa (patch)
tree85cb5fc6626626b42df6a425a0663a515ac5362c /indra/develop.py
parentd4ba73ed721fa0811474fc53300f560539d38018 (diff)
parent3e46ee6274d04d91657da92953b167fe94eb7f59 (diff)
Merge from remote repo
Diffstat (limited to 'indra/develop.py')
-rwxr-xr-xindra/develop.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/develop.py b/indra/develop.py
index 79baa613ad..05ad12f20e 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -578,12 +578,16 @@ class WindowsSetup(PlatformSetup):
# devenv.com is CLI friendly, devenv.exe... not so much.
return ('"%sdevenv.com" %s.sln /build %s' %
(self.find_visual_studio(), self.project_name, self.build_type))
+ #return ('devenv.com %s.sln /build %s' %
+ # (self.project_name, self.build_type))
def run(self, command, name=None, retry_on=None, retries=1):
'''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]