mirror of https://github.com/arendst/Tasmota.git
next try to find esptool
This commit is contained in:
parent
ea12ddeca9
commit
e039e59375
|
@ -19,9 +19,13 @@
|
|||
Import("env")
|
||||
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
from os.path import expanduser, join
|
||||
|
||||
home = expanduser("~")
|
||||
esptool = join(home, ".platformio", "packages", "tool-esptoolpy", "esptool.py")
|
||||
esptoolpath = join(home, ".platformio", "packages", "tool-esptoolpy")
|
||||
sys.path.append(esptoolpath)
|
||||
import esptool
|
||||
|
||||
def esp32_create_combined_bin(source, target, env):
|
||||
|
|
Loading…
Reference in New Issue