mirror of https://github.com/arendst/Tasmota.git
Delete rename-firmware.py
This commit is contained in:
parent
6287eb5b27
commit
72f901a2f7
|
@ -1,12 +0,0 @@
|
|||
Import('env')
|
||||
import os
|
||||
|
||||
def obj_ren_after_bin(source, target, env):
|
||||
# print("Rename firmware.bin")
|
||||
base_dir = os.path.dirname(str(target[0]))
|
||||
new_file = "{}{}{}.bin".format(base_dir, os.path.sep, str(target[0]).split(os.path.sep)[1])
|
||||
if os.path.isfile(new_file):
|
||||
os.remove(new_file)
|
||||
os.rename(str(target[0]), new_file)
|
||||
|
||||
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", [obj_ren_after_bin])
|
Loading…
Reference in New Issue