diff options
author | Zach White <skullydazed@gmail.com> | 2021-01-20 12:38:18 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 20:38:18 +0000 |
commit | 111eb8990d8b82a811c6c4345c3a67b8167e34a9 (patch) | |
tree | 4d02e981b215cab912b1f313895a1dfd76a53bd3 /lib/python | |
parent | 4e8166750b21cfd3feaba0d6024087fb5c76bca9 (diff) |
Fix QMK_BUILDDATE (#11641)
Diffstat (limited to 'lib/python')
-rw-r--r-- | lib/python/qmk/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py index 529c41c0c5..f58062004f 100644 --- a/lib/python/qmk/commands.py +++ b/lib/python/qmk/commands.py @@ -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}"', ] |