summaryrefslogtreecommitdiff
path: root/indra/develop.py
diff options
context:
space:
mode:
Diffstat (limited to 'indra/develop.py')
-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.'''