historical/toontown-just-works.git/build/nirai/panda3d/makepanda/getversion.py

18 lines
501 B
Python
Raw Normal View History

2024-01-16 11:20:27 -06:00
#!/usr/bin/env python
# This script parses the version number in dtool/PandaVersion.pp
# and returns it on the command-line. This is useful for the
# automated scripts that build the Panda3D releases.
from makepandacore import ParsePandaVersion, ParsePluginVersion
import sys
if '--runtime' in sys.argv:
version = ParsePluginVersion("dtool/PandaVersion.pp")
else:
version = ParsePandaVersion("dtool/PandaVersion.pp")
version = version.strip()
sys.stdout.write(version)
sys.stdout.flush()