mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
fix wscript to handle git revision ID that consists of just MAJOR.MINOR, as will happen if the repo is at the exact same rev as the MAJOR.MINOR tag
This commit is contained in:
parent
d96a6ed247
commit
317a6c7f99
1 changed files with 5 additions and 1 deletions
6
wscript
6
wscript
|
|
@ -30,13 +30,17 @@ else:
|
|||
|
||||
#
|
||||
# rev is now of the form MAJOR.MINOR-rev-commit
|
||||
# or, if right at the same rev as a release, MAJOR.MINOR
|
||||
#
|
||||
|
||||
parts = rev.split ('.')
|
||||
MAJOR = parts[0]
|
||||
other = parts[1].split ('-')
|
||||
MINOR = other[0]
|
||||
MICRO = other[1]
|
||||
if len(other) > 1:
|
||||
MICRO = other[1]
|
||||
else:
|
||||
MICRO = '0'
|
||||
|
||||
V = MAJOR + '.' + MINOR + '.' + MICRO
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue