fix!: don't force all dependencies to be reinstalled
When you reinstall app forcefully all dependencies will also get forcefully reinstalled. This IMO isn't required in most cases and can even be breaking. Anyway if required those apps can be manually force installed.
This commit is contained in:
parent
31bdb209ed
commit
e4a6016f83
1 changed files with 1 additions and 1 deletions
|
|
@ -265,7 +265,7 @@ def install_app(name, verbose=False, set_as_patched=True, force=False):
|
|||
if app_hooks.required_apps:
|
||||
for app in app_hooks.required_apps:
|
||||
required_app = parse_app_name(app)
|
||||
install_app(required_app, verbose=verbose, force=force)
|
||||
install_app(required_app, verbose=verbose)
|
||||
|
||||
frappe.flags.in_install = name
|
||||
frappe.clear_cache()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue