mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-27 04:36:31 +00:00
build gz only for ESP8266
This commit is contained in:
parent
d99ba6992c
commit
1b1b1ed83c
@ -3,6 +3,12 @@ import os
|
||||
import shutil
|
||||
import gzip
|
||||
|
||||
platform = env.PioPlatform()
|
||||
board = env.BoardConfig()
|
||||
mcu = board.get("build.mcu", "esp32")
|
||||
# gzip only for ESP8266
|
||||
if env["PIOPLATFORM"] != "espressif32":
|
||||
|
||||
OUTPUT_DIR = "build_output{}".format(os.path.sep)
|
||||
|
||||
def bin_gzip(source, target, env):
|
||||
|
Loading…
x
Reference in New Issue
Block a user