Fix QMK_BUILDDATE (#11641)

master
Zach White 2021-01-20 12:38:18 -08:00 committed by GitHub
parent 4e8166750b
commit 111eb8990d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ def write_version_h(git_version, build_date, chibios_version, chibios_contrib_ve
"""
version_h = [
f'#define QMK_VERSION "{git_version}"',
f'#define QMK_BUILD_DATE "{build_date}"',
f'#define QMK_BUILDDATE "{build_date}"',
f'#define CHIBIOS_VERSION "{chibios_version}"',
f'#define CHIBIOS_CONTRIB_VERSION "{chibios_contrib_version}"',
]