Skip to content

Commit

Permalink
Merge branch 'release/v2.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Sep 2, 2019
2 parents 8f77684 + 2a3850c commit cd6f5cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
custom: https://platformio.org/donate
3 changes: 1 addition & 2 deletions builder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def _update_max_upload_size(env):
# Target: Build executable and linkable firmware or SPIFFS image
#

target_elf = None
target_elf = env.BuildProgram()
if "nobuild" in COMMAND_LINE_TARGETS:
target_elf = join("$BUILD_DIR", "${PROGNAME}.elf")
if set(["uploadfs", "uploadfsota"]) & set(COMMAND_LINE_TARGETS):
Expand All @@ -209,7 +209,6 @@ def _update_max_upload_size(env):
else:
target_firm = join("$BUILD_DIR", "${PROGNAME}.bin")
else:
target_elf = env.BuildProgram()
if set(["buildfs", "uploadfs", "uploadfsota"]) & set(COMMAND_LINE_TARGETS):
target_firm = env.DataToBin(
join("$BUILD_DIR", "spiffs"), "$PROJECTDATA_DIR")
Expand Down
2 changes: 1 addition & 1 deletion platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "git",
"url": "https://github.com/platformio/platform-espressif8266.git"
},
"version": "2.2.2",
"version": "2.2.3",
"packageRepositories": [
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
"http://dl.platformio.org/packages/manifest.json",
Expand Down

0 comments on commit cd6f5cc

Please sign in to comment.