mirror of https://github.com/arendst/Tasmota.git
29 lines
1.2 KiB
Python
29 lines
1.2 KiB
Python
Import('env')
|
|
|
|
import os
|
|
import pathlib
|
|
from os.path import join
|
|
import shutil
|
|
from colorama import Fore, Back, Style
|
|
|
|
if " " in join(pathlib.Path(env["PROJECT_DIR"])):
|
|
print(Fore.RED + "*** Whitespace(s) in project path, unexpected issues/errors can happen ***")
|
|
|
|
# copy tasmota/user_config_override_sample.h to tasmota/user_config_override.h
|
|
if os.path.isfile("tasmota/user_config_override.h"):
|
|
print(Fore.GREEN + "*** use provided user_config_override.h as planned ***")
|
|
else:
|
|
shutil.copy("tasmota/user_config_override_sample.h", "tasmota/user_config_override.h")
|
|
|
|
# copy platformio_override_sample.ini to platformio_override.ini
|
|
if os.path.isfile("platformio_override.ini"):
|
|
print(Fore.GREEN + "*** use provided platformio_override.ini as planned ***")
|
|
else:
|
|
shutil.copy("platformio_override_sample.ini", "platformio_override.ini")
|
|
|
|
# copy platformio_tasmota_cenv_sample.ini to platformio_tasmota_cenv.ini
|
|
if os.path.isfile("platformio_tasmota_cenv.ini"):
|
|
print(Fore.GREEN + "*** use provided platformio_tasmota_cenv.ini as planned ***")
|
|
else:
|
|
shutil.copy("platformio_tasmota_cenv_sample.ini", "platformio_tasmota_cenv.ini")
|