Skip to content

Commit

Permalink
Merge pull request frappe#1285 from ankush/dev_setup
Browse files Browse the repository at this point in the history
fix: setup all apps is empty list is supplied
  • Loading branch information
gavindsouza authored Mar 22, 2022
2 parents 8abdbf2 + 7ab469a commit 1337f9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/utils/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1337f9c

Please sign in to comment.