From 820efaeb21b70115b112698ac9ddc422db5fd56f Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 26 Jun 2017 18:04:40 +0300 Subject: [PATCH] Switch to stable PlatformIO --- scripts/get-platformio.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/get-platformio.py b/scripts/get-platformio.py index 7e052184..d9abf5d5 100644 --- a/scripts/get-platformio.py +++ b/scripts/get-platformio.py @@ -112,11 +112,11 @@ def install_pip(): def install_platformio(): r = None - # cmd = ["pip", "install", "-U", "platformio"] - cmd = [ - "pip", "install", "-U", - "https://github.com/platformio/platformio-core/archive/develop.zip" - ] + cmd = ["pip", "install", "-U", "platformio"] + # cmd = [ + # "pip", "install", "-U", + # "https://github.com/platformio/platformio-core/archive/develop.zip" + # ] try: r = exec_python_cmd(cmd) assert r['returncode'] == 0