Improve PlatformIO installation on the Mac OS X El Capitan

This commit is contained in:
Ivan Kravets
2015-12-12 18:18:57 +02:00
parent f793ff1a86
commit 7868566a78
4 changed files with 13 additions and 11 deletions

View File

@@ -366,7 +366,8 @@ def test_scons():
def install_scons():
r = exec_command(["pip", "install", "-U", "scons"])
if r['returncode'] != 0:
r = exec_command(["pip", "install", "--egg", "scons"])
r = exec_command(["pip", "install", "--egg", "scons",
'--install-option="--no-install-man"'])
return r['returncode'] == 0