commit script/template changed

This commit is contained in:
tkl 2016-07-29 10:16:47 +02:00
parent f9394d9517
commit 07c2048db9
2 changed files with 2 additions and 3 deletions

View File

@ -4,9 +4,8 @@
#define GIT_COMMIT_H
#define CURRENT_COMMIT "0"
#define AUTHOR "tkl <tkl@blackfinn.de>"
#define AUTHOR "tkl <tkl@blackfinn.de"
#define LOCAL_CHANGES "NO"
#define UNTRACKED_FILES "NO"
#endif /* GIT_COMMIT_H */

View File

@ -83,7 +83,7 @@ def main(argv):
untracked_files = check_for_untracked()
log_list = get_git_log()
commit_list = get_commit_list(log_list)
generate_include_file("source/firmware/git_commit.h", commit_list, local_changes, untracked_files)
generate_include_file("source/application/git_commit.h", commit_list, local_changes, untracked_files)
if __name__ == "__main__":
main(argv[1:])