summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
Diffstat (limited to 'indra')
-rwxr-xr-xindra/develop.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/indra/develop.py b/indra/develop.py
index a20badcfba..71569f15d2 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -595,10 +595,7 @@ class WindowsSetup(PlatformSetup):
ret = subprocess.call(command, executable=name)
print "got ret", ret, "from", command
if ret:
- if name is None:
- name = command.split(None, 1)[0]
- path = self.find_in_path(name)
- if not path:
+ if not name:
error = 'was not found'
else:
error = 'exited with status %d' % ret