2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-23 12:39:01 +00:00

fix: setup all apps is empty list is supplied

This commit is contained in:
Ankush Menat 2022-03-22 12:51:29 +05:30
parent 8abdbf2ce7
commit 7ab469af84

View File

@ -74,7 +74,7 @@ def install_python_dev_dependencies(bench_path=".", apps=None, verbose=False):
if isinstance(apps, str): if isinstance(apps, str):
apps = [apps] apps = [apps]
elif apps is None: elif not apps:
apps = bench.get_installed_apps() apps = bench.get_installed_apps()
for app in apps: for app in apps: