fix "--version": needs to change working directory

before calling `git`. otherwise it would display git commit id from the
directory where you are calling `freqtrade` from instead of freqtrade's
current commit id
This commit is contained in:
Joe Schr 2023-01-11 21:07:03 +01:00
parent 00dbc195ac
commit 08748dd021
1 changed files with 3 additions and 1 deletions

View File

@ -3,11 +3,13 @@ __version__ = '2023.1.dev'
if 'dev' in __version__:
try:
import os
import subprocess
freqtrade_basedir = os.path.dirname(os.path.abspath(__file__))
__version__ = __version__ + '-' + subprocess.check_output(
['git', 'log', '--format="%h"', '-n 1'],
stderr=subprocess.DEVNULL).decode("utf-8").rstrip().strip('"')
stderr=subprocess.DEVNULL, cwd=freqtrade_basedir).decode("utf-8").rstrip().strip('"')
except Exception: # pragma: no cover
# git not available, ignore