2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 12:05:53 +00:00

chore(contrib): include pkg source in pkg logging (#9035)

* fix(backend): wrong path for version was used

* chore(contrib): Include Pkg source in pkg logging
This commit is contained in:
Matthias Mair
2025-02-05 23:17:42 +01:00
committed by GitHub
parent 8bea3caec4
commit a3be8e986b
2 changed files with 13 additions and 1 deletions

View File

@ -70,7 +70,7 @@ BASE_DIR = config.get_base_dir()
CONFIG = config.load_config_data(set_cache=True)
# Load VERSION data if it exists
version_file = BASE_DIR.parent.joinpath('VERSION')
version_file = BASE_DIR.parent.parent.parent.joinpath('VERSION')
if version_file.exists():
print('load version from file')
load_dotenv(version_file)