Add binaries to binary branch instead of master (#441)
This commit is contained in:
12
pio_package_pre.py
Normal file
12
pio_package_pre.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import re, shutil, os
|
||||
from datetime import datetime, timezone
|
||||
|
||||
regex = r"\#define NUKI_HUB_DATE \"(.*)\""
|
||||
content_new = ""
|
||||
|
||||
with open ('src/Config.h', 'r' ) as readfile:
|
||||
file_content = readfile.read()
|
||||
content_new = re.sub(regex, "#define NUKI_HUB_DATE \"" + datetime.now(timezone.utc).strftime("%Y-%m-%d %H:%M:%S") + "\"", file_content, flags = re.M)
|
||||
|
||||
with open('src/Config.h', 'w') as writefile:
|
||||
writefile.write(content_new)
|
||||
Reference in New Issue
Block a user