overengineered version discovery
This commit is contained in:
parent
174aa77280
commit
65c8af4ba3
1 changed files with 14 additions and 1 deletions
|
@ -22,6 +22,7 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import hashlib
|
import hashlib
|
||||||
|
import subprocess
|
||||||
|
|
||||||
import cdist.log
|
import cdist.log
|
||||||
|
|
||||||
|
@ -30,7 +31,19 @@ try:
|
||||||
import cdist.version
|
import cdist.version
|
||||||
VERSION = cdist.version.VERSION
|
VERSION = cdist.version.VERSION
|
||||||
except ModuleNotFoundError:
|
except ModuleNotFoundError:
|
||||||
VERSION = 'unknown version'
|
cdist_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir))
|
||||||
|
if os.path.isdir(os.path.join(cdist_dir, '.git')):
|
||||||
|
run_git = subprocess.run(
|
||||||
|
['git', 'describe', '--always'],
|
||||||
|
cwd=cdist_dir,
|
||||||
|
capture_output=True,
|
||||||
|
text=True)
|
||||||
|
if run_git.returncode == 0:
|
||||||
|
VERSION = str(run_git.stdout)
|
||||||
|
else:
|
||||||
|
VERSION = 'from git'
|
||||||
|
else:
|
||||||
|
VERSION = 'unknown version'
|
||||||
|
|
||||||
BANNER = """
|
BANNER = """
|
||||||
.. . .x+=:. s
|
.. . .x+=:. s
|
||||||
|
|
Loading…
Reference in a new issue