diff --git a/indra/develop.py b/indra/develop.py
index 79baa613adb1a2758b2b05117ea7c90fddc59dd0..7941600b6844860422452e52eac6fbce79fd96b9 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -576,8 +576,10 @@ def get_build_cmd(self):
             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.'''