summaryrefslogtreecommitdiff
path: root/indra/develop.py
diff options
context:
space:
mode:
authorCG Linden <cg@lindenlab.com>2009-11-15 09:22:00 -0800
committerCG Linden <cg@lindenlab.com>2009-11-15 09:22:00 -0800
commitda4f76c17a19addb6a96b4c032fce5a873bee6e1 (patch)
treecfe402d0dba54796e8bb61ab4f591cd7dc214212 /indra/develop.py
parentf17399212edec08faf16fc844b2f9e5882f224f2 (diff)
Set PATH to devenv.com to avoid problem with develop.py's use of os.system()
Diffstat (limited to 'indra/develop.py')
-rwxr-xr-xindra/develop.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/develop.py b/indra/develop.py
index 79baa613ad..7941600b68 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -576,8 +576,10 @@ class WindowsSetup(PlatformSetup):
return "buildconsole %s.sln /build %s" % (self.project_name, config)
# 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 ('"%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.'''