forked from platformio/platformio-core
Fix bug with "env_default" when "pio run -e" is used
This commit is contained in:
@ -4,6 +4,11 @@ Release Notes
|
|||||||
PlatformIO 2.0
|
PlatformIO 2.0
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
|
2.9.2 (2016-??-??)
|
||||||
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* Fixed bug with ``env_default`` when ``pio run -e`` is used
|
||||||
|
|
||||||
2.9.1 (2016-04-30)
|
2.9.1 (2016-04-30)
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
@ -62,9 +62,9 @@ IDE integration. Arduino and MBED compatible. Ready for Cloud compiling.
|
|||||||
platforms and frameworks; learn via examples; be up-to-date with the latest
|
platforms and frameworks; learn via examples; be up-to-date with the latest
|
||||||
version.
|
version.
|
||||||
|
|
||||||
*Atmel AVR & SAM, Espressif, Freescale Kinetis, Nordic nRF51, NXP LPC,
|
*Atmel AVR & SAM, Espressif, Freescale Kinetis, Intel ARC32, Lattice iCE40,
|
||||||
Silicon Labs EFM32, ST STM32, TI MSP430 & Tiva, Teensy, Arduino, mbed,
|
Microchip PIC32, Nordic nRF51, NXP LPC, Silicon Labs EFM32, ST STM32,
|
||||||
libOpenCM3, etc.*
|
TI MSP430 & Tiva, Teensy, Arduino, mbed, libOpenCM3, etc.*
|
||||||
|
|
||||||
.. image:: https://raw.githubusercontent.com/platformio/platformio/develop/docs/_static/platformio-demo-wiring.gif
|
.. image:: https://raw.githubusercontent.com/platformio/platformio/develop/docs/_static/platformio-demo-wiring.gif
|
||||||
:target: http://platformio.org
|
:target: http://platformio.org
|
||||||
|
2
examples
2
examples
Submodule examples updated: c06e843757...48e856c1e8
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = (2, 9, 1)
|
VERSION = (2, 9, "2.dev0")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@ -81,7 +81,8 @@ def cli(ctx, environment, target, upload_port, # pylint: disable=R0913,R0914
|
|||||||
|
|
||||||
envname = section[4:]
|
envname = section[4:]
|
||||||
if ((environment and envname not in environment) or
|
if ((environment and envname not in environment) or
|
||||||
(env_default and envname not in env_default)):
|
(not environment and env_default and
|
||||||
|
envname not in env_default)):
|
||||||
# echo("Skipped %s environment" % style(envname, fg="yellow"))
|
# echo("Skipped %s environment" % style(envname, fg="yellow"))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user