diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2023-04-26 18:24:39 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2023-05-02 11:40:18 -0400 |
commit | 1a24e7c5b683355335b115e5659eb6fe8c8d11dc (patch) | |
tree | d0ea04389877845545fb0f2de2561f5782d00d74 /scripts | |
parent | 3b0729c94932f4df0298a7c992022f54a5454428 (diff) | |
download | kutter-1a24e7c5b683355335b115e5659eb6fe8c8d11dc.tar.gz kutter-1a24e7c5b683355335b115e5659eb6fe8c8d11dc.tar.xz kutter-1a24e7c5b683355335b115e5659eb6fe8c8d11dc.zip |
klippy: Report repo version as "dirty" if there are untracked python files
Check for untracked files in the klippy/extras/ and klippy/kinematics/
directories and report those files in the log. This helps identify
code modifications when inspecting a log.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make_version.py b/scripts/make_version.py index 47422500..ea8b0546 100644 --- a/scripts/make_version.py +++ b/scripts/make_version.py @@ -23,7 +23,7 @@ def main(argv): help='Name of distro this package is intended for' ) args = p.parse_args() - print(util.get_git_version(from_file=False), + print(util.get_git_version(from_file=False)[0], args.distroname.replace(' ', ''), sep='-') |