Skip to content

Commit

Permalink
fix: setup requirements --python skips assets
Browse files Browse the repository at this point in the history
  • Loading branch information
gavindsouza committed Mar 4, 2020
1 parent 6ecfa00 commit d0ebf7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bench/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,14 +596,14 @@ def update_requirements(bench_path='.'):
from bench.app import get_apps, install_app
print('Updating Python libraries...')

# update env pip
update_env_pip(bench_path)

# Update bench requirements (at user level)
update_bench_requirements()

# update env pip
update_env_pip(bench_path)

for app in get_apps():
install_app(app, bench_path=bench_path)
install_app(app, bench_path=bench_path, skip_assets=True)


def update_node_packages(bench_path='.'):
Expand Down

0 comments on commit d0ebf7f

Please sign in to comment.