2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-12 00:06:36 +00:00

Merge pull request #761 from saurabh6790/fix_requirements_installation

fix: pull app list from sites/apps.txt
This commit is contained in:
Sagar Vora 2019-01-21 13:25:43 +05:30 committed by GitHub
commit 5ab2da3d39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -429,8 +429,9 @@ def update_requirements(bench_path='.'):
bench_req_file = os.path.join(os.path.dirname(bench.__path__[0]), 'requirements.txt')
install_requirements(pip, bench_req_file)
from .app import install_app
for app in os.listdir(apps_dir):
from bench.app import get_apps, install_app
for app in get_apps():
install_app(app, bench_path=bench_path)
def update_node_packages(bench_path='.'):