Skip to content
Snippets Groups Projects
Commit 561a5c54 authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

Tools/px_mkfw.py: use the same args to get the git version as px_update_git_header.py

parent d67b6efd
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,7 @@ if args.summary != None:
if args.description != None:
desc['description'] = str(args.description)
if args.git_identity != None:
cmd = " ".join(["git", "--git-dir", args.git_identity + "/.git", "describe", "--always", "--dirty"])
cmd = " ".join(["git", "--git-dir", args.git_identity + "/.git", "describe", "--always", "--tags"])
p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE).stdout
desc['git_identity'] = str(p.read().strip())
p.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment