summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorCG Linden <cg@lindenlab.com>2009-11-15 09:41:07 -0800
committerCG Linden <cg@lindenlab.com>2009-11-15 09:41:07 -0800
commit853faf531672a230c3bf7b4ed3069e0b6c2f6349 (patch)
treec9d4beba5a1e28c913a5b798729bb3c8717a04df /indra
parentda4f76c17a19addb6a96b4c032fce5a873bee6e1 (diff)
Invoke native python for develop.py, not CYGWIN python, revert develop.py's original usage
Diffstat (limited to 'indra')
-rwxr-xr-xindra/develop.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/develop.py b/indra/develop.py
index 7941600b68..3040b312ba 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -576,10 +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 ('devenv.com %s.sln /build %s' %
- (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.'''