Skip to content

Commit

Permalink
Fix --custom-version option in genversion.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gbitzes committed Jul 4, 2019
1 parent f0691d4 commit 9d171f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def main():
ensureRunningInGitRepo()
gitDescribe = GitDescribe(sh("git describe --dirty").strip())
else:
gitDescribe = args.custom_version
gitDescribe = GitDescribe(args.custom_version)

softwareVersion = gitDescribe.getVersion()

Expand Down

0 comments on commit 9d171f4

Please sign in to comment.