mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 16:20:11 -04:00
makepanda: allow passing in more than 3 digits in version number
This commit is contained in:
parent
d028bebb52
commit
2b0a2ea6df
@ -1071,7 +1071,7 @@ if __name__ == "__main__":
|
|||||||
PkgDisable(pkg)
|
PkgDisable(pkg)
|
||||||
|
|
||||||
# Parse the version.
|
# Parse the version.
|
||||||
match = re.match(r'^\d+\.\d+\.\d+', options.version)
|
match = re.match(r'^\d+\.\d+(\.\d+)+', options.version)
|
||||||
if not match:
|
if not match:
|
||||||
exit("version requires three digits")
|
exit("version requires three digits")
|
||||||
|
|
||||||
|
@ -225,7 +225,7 @@ def parseopts(args):
|
|||||||
elif (option=="--arch"): target_arch = value.strip()
|
elif (option=="--arch"): target_arch = value.strip()
|
||||||
elif (option=="--nocolor"): DisableColors()
|
elif (option=="--nocolor"): DisableColors()
|
||||||
elif (option=="--version"):
|
elif (option=="--version"):
|
||||||
match = re.match(r'^\d+\.\d+\.\d+', value)
|
match = re.match(r'^\d+\.\d+(\.\d+)+', value)
|
||||||
if not match:
|
if not match:
|
||||||
usage("version requires three digits")
|
usage("version requires three digits")
|
||||||
WHLVERSION = value
|
WHLVERSION = value
|
||||||
|
Loading…
x
Reference in New Issue
Block a user