2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 03:26:45 +00:00

Include plugin file location in "invoke version" (#9176)

This commit is contained in:
Oliver 2025-02-26 08:41:11 +11:00 committed by GitHub
parent df60b1bc22
commit 1a4a2b21d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1298,6 +1298,7 @@ def version(c):
get_backup_dir, get_backup_dir,
get_config_file, get_config_file,
get_media_dir, get_media_dir,
get_plugin_file,
get_static_dir, get_static_dir,
) )
@ -1323,6 +1324,7 @@ Invoke Tool {invoke_path}
Installation paths: Installation paths:
Base {localDir()} Base {localDir()}
Config {get_config_file()} Config {get_config_file()}
Plugin File {get_plugin_file() or NOT_SPECIFIED}
Media {get_media_dir(error=False) or NOT_SPECIFIED} Media {get_media_dir(error=False) or NOT_SPECIFIED}
Static {get_static_dir(error=False) or NOT_SPECIFIED} Static {get_static_dir(error=False) or NOT_SPECIFIED}
Backup {get_backup_dir(error=False) or NOT_SPECIFIED} Backup {get_backup_dir(error=False) or NOT_SPECIFIED}