mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-07-07 15:07:26 -06:00
9 lines
194 B
Python
9 lines
194 B
Python
#
|
|
# random-bin.py
|
|
# Set a unique firmware name based on current date and time
|
|
#
|
|
Import("env")
|
|
|
|
from datetime import datetime
|
|
|
|
env['PROGNAME'] = datetime.now().strftime("firmware-%Y%m%d-%H%M%S")
|