mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 06:58:11 +01:00
Fix path to extra_scripts in platformio.ini (#3093)
This commit is contained in:
parent
c2ee0f0864
commit
f2d677d51a
1 changed files with 3 additions and 3 deletions
|
@ -89,7 +89,7 @@ build_flags =
|
|||
${common:arduino.build_flags}
|
||||
-DUSE_ESP8266
|
||||
-DUSE_ESP8266_FRAMEWORK_ARDUINO
|
||||
extra_scripts = post:esphome/components/esp8266/post_build.py
|
||||
extra_scripts = post:esphome/components/esp8266/post_build.py.script
|
||||
|
||||
; This are common settings for the ESP32 (all variants) using Arduino.
|
||||
[common:esp32-arduino]
|
||||
|
@ -108,7 +108,7 @@ build_flags =
|
|||
${common:arduino.build_flags}
|
||||
-DUSE_ESP32
|
||||
-DUSE_ESP32_FRAMEWORK_ARDUINO
|
||||
extra_scripts = post:esphome/components/esp32/post_build.py
|
||||
extra_scripts = post:esphome/components/esp32/post_build.py.script
|
||||
|
||||
; This are common settings for the ESP32 (all variants) using IDF.
|
||||
[common:esp32-idf]
|
||||
|
@ -127,7 +127,7 @@ build_flags =
|
|||
-Wno-nonnull-compare
|
||||
-DUSE_ESP32
|
||||
-DUSE_ESP32_FRAMEWORK_ESP_IDF
|
||||
extra_scripts = post:esphome/components/esp32/post_build.py
|
||||
extra_scripts = post:esphome/components/esp32/post_build.py.script
|
||||
|
||||
; All the actual environments are defined below.
|
||||
[env:esp8266-arduino]
|
||||
|
|
Loading…
Reference in a new issue