[IMP] script check_addons_exist.py: argument output_path
- output the real path if module exist from configuration
This commit is contained in:
parent
f972acbc80
commit
c172c77159
1 changed files with 10 additions and 0 deletions
|
|
@ -43,6 +43,11 @@ def get_config():
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="Enable debug output",
|
help="Enable debug output",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--output_path",
|
||||||
|
action="store_true",
|
||||||
|
help="Print path if module exist",
|
||||||
|
)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
return args
|
return args
|
||||||
|
|
||||||
|
|
@ -97,10 +102,15 @@ def main():
|
||||||
)
|
)
|
||||||
if dct_module_exist:
|
if dct_module_exist:
|
||||||
for key, lst_value in dct_module_exist.items():
|
for key, lst_value in dct_module_exist.items():
|
||||||
|
is_print_value = False
|
||||||
if len(lst_value) != 1:
|
if len(lst_value) != 1:
|
||||||
|
is_print_value = True
|
||||||
is_good = False
|
is_good = False
|
||||||
module_list = "'" + "', '".join(lst_value) + "'"
|
module_list = "'" + "', '".join(lst_value) + "'"
|
||||||
_logger.error(f"Conflict modules: {module_list}")
|
_logger.error(f"Conflict modules: {module_list}")
|
||||||
|
elif lst_value and config.output_path:
|
||||||
|
is_print_value = True
|
||||||
|
if is_print_value:
|
||||||
for value in lst_value:
|
for value in lst_value:
|
||||||
print(value)
|
print(value)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue