2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-24 04:59:01 +00:00

fix: setup requirements --python skips assets

This commit is contained in:
Gavin D'souza 2020-03-04 14:04:54 +05:30
parent 6ecfa006e2
commit d0ebf7f4c4

View File

@ -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='.'):