Quote upload port for Espressif OTA // Issue #417

This commit is contained in:
Ivan Kravets
2015-12-30 18:42:46 +02:00
parent 98ec2237b7
commit f2cad66d79
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
import sys import sys
VERSION = (2, 7, "0.dev11") VERSION = (2, 7, "0.dev12")
__version__ = ".".join([str(s) for s in VERSION]) __version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio" __title__ = "platformio"

View File

@ -116,7 +116,7 @@ env.Replace(
UPLOADEROTAFLAGS=[ UPLOADEROTAFLAGS=[
"--debug", "--debug",
"--progress", "--progress",
"-i", "$UPLOAD_PORT", "-i", '"$UPLOAD_PORT"',
"$UPLOAD_FLAGS" "$UPLOAD_FLAGS"
], ],