mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
8 lines
305 B
Python
8 lines
305 B
Python
#!/usr/bin/env python
|
|
Import("env")
|
|
|
|
# see http://docs.platformio.org/en/latest/projectconf/advanced_scripting.html#before-pre-and-after-post-actions
|
|
# env.Replace(PROGNAME="firmware_%s" % defines.get("VERSION"))
|
|
# print env.Dump()
|
|
env.Replace(PROGNAME="firmware_%s" % env['BOARD'] + "_" + env['PIOENV'])
|