Fix SPIFFS uploading via OTA // Issue #382

This commit is contained in:
Ivan Kravets
2015-12-30 14:33:16 +02:00
parent 4f8138fe1f
commit 121102beef
2 changed files with 3 additions and 4 deletions

View File

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

View File

@ -213,9 +213,8 @@ env.Append(
if "uploadfs" in COMMAND_LINE_TARGETS:
env.Append(
UPLOADERFLAGS=[
"-ca", "$SPIFFS_START"
]
UPLOADERFLAGS=["-ca", "$SPIFFS_START"],
UPLOADEROTAFLAGS=["-s"]
)
#