diff options
author | Bradley Sepos <[email protected]> | 2016-12-18 16:26:54 -0500 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2016-12-18 16:27:02 -0500 |
commit | 90f66b178a01a50fdd521d36e8005f4fcd18bc45 (patch) | |
tree | 9197787865e1928fd4f07e49407129941a004cbb /make | |
parent | 59709811e45646a17ead4346ff4efdaf5a3c9246 (diff) |
build: Ensure tag suffix is not None in configure.py.
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py index c7a5fedc9..35bb397ac 100644 --- a/make/configure.py +++ b/make/configure.py @@ -833,7 +833,8 @@ class Project( Action ): self.vmajor = int(vmajor) self.vminor = int(vminor) self.vpoint = int(vpoint) - self.suffix = suffix + if suffix: + self.suffix = suffix if repo.type != 'release' or options.snapshot: self.version = repo.date.strftime("%Y%m%d%H%M%S") |