mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-25 21:07:32 +00:00
4483b8aaf0
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
10 lines
237 B
Python
10 lines
237 B
Python
#
|
|
# random-bin.py
|
|
# Set a unique firmware name based on current date and time
|
|
#
|
|
import pioutil
|
|
if pioutil.is_pio_build():
|
|
from datetime import datetime
|
|
Import("env")
|
|
env['PROGNAME'] = datetime.now().strftime("firmware-%Y%m%d-%H%M%S")
|