mirror of https://github.com/arendst/Tasmota.git
minor clean up in scripts (#17483)
This commit is contained in:
parent
3c1531bf1c
commit
c574e24cad
|
@ -1,6 +1,5 @@
|
|||
Import("env")
|
||||
env = DefaultEnvironment()
|
||||
platform = env.PioPlatform()
|
||||
|
||||
import os
|
||||
import glob
|
||||
import subprocess
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Import("env")
|
||||
|
||||
import os
|
||||
import shutil
|
||||
import pathlib
|
||||
import tasmotapiolib
|
||||
import gzip
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# Original idea by Pascal Gollor at 2022-12-13
|
||||
|
||||
Import("env")
|
||||
|
||||
import os
|
||||
import tasmotapiolib
|
||||
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
Import("env")
|
||||
Import("projenv")
|
||||
import os
|
||||
|
||||
import shutil
|
||||
import pathlib
|
||||
|
||||
import tasmotapiolib
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
Import('env')
|
||||
|
||||
import os
|
||||
import shutil
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
Import("env")
|
||||
|
||||
import glob
|
||||
import os
|
||||
|
||||
Import("env")
|
||||
|
||||
def FindInoNodes(env):
|
||||
src_dir = glob.escape(env.subst("$PROJECT_SRC_DIR"))
|
||||
return env.Glob(os.path.join(src_dir, "*.ino")) + env.Glob(
|
||||
|
|
Loading…
Reference in New Issue