2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-13 16:56:33 +00:00

Merge pull request #1285 from ankush/dev_setup

fix: setup all apps is empty list is supplied
This commit is contained in:
gavin 2022-03-22 13:08:50 +05:30 committed by GitHub
commit 1337f9c1a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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