forked from platformio/platformio-core
Fix issue with "PATH" auto-configuring for upload tools
This commit is contained in:
@ -9,6 +9,7 @@ PlatformIO 3.0
|
|||||||
|
|
||||||
* Improved detecting of ARM mbed media disk for uploading
|
* Improved detecting of ARM mbed media disk for uploading
|
||||||
* Improved Project Generator for CLion IDE when source folder contains nested items
|
* Improved Project Generator for CLion IDE when source folder contains nested items
|
||||||
|
* Fixed issue with ``PATH`` auto-configuring for upload tools
|
||||||
|
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = (3, 1, "1a1")
|
VERSION = (3, 1, "1a2")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@ -31,7 +31,7 @@ def initPioPlatform(name):
|
|||||||
def PioPlatform(env):
|
def PioPlatform(env):
|
||||||
variables = {}
|
variables = {}
|
||||||
for key in ("board", "pioframework"):
|
for key in ("board", "pioframework"):
|
||||||
if key not in env:
|
if key.upper() not in env:
|
||||||
continue
|
continue
|
||||||
variables[key] = env[key.upper()]
|
variables[key] = env[key.upper()]
|
||||||
p = initPioPlatform(env['PLATFORM_MANIFEST'])
|
p = initPioPlatform(env['PLATFORM_MANIFEST'])
|
||||||
|
Reference in New Issue
Block a user