mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Catch an error if git cannot be found
This commit is contained in:
parent
68bbb372dc
commit
7fff0a7427
@ -27,12 +27,17 @@ def inventreeDjangoVersion():
|
||||
def inventreeCommitHash():
|
||||
""" Returns the git commit hash for the running codebase """
|
||||
|
||||
try:
|
||||
return str(subprocess.check_output('git rev-parse --short HEAD'.split()), 'utf-8').strip()
|
||||
except FileNotFoundError:
|
||||
return None
|
||||
|
||||
|
||||
def inventreeCommitDate():
|
||||
""" Returns the git commit date for the running codebase """
|
||||
|
||||
try:
|
||||
d = str(subprocess.check_output('git show -s --format=%ci'.split()), 'utf-8').strip()
|
||||
|
||||
return d.split(' ')[0]
|
||||
except FileNotFoundError:
|
||||
return None
|
||||
|
Loading…
Reference in New Issue
Block a user