2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-10 00:37:51 +00:00

fix for erpnext dependencies

This commit is contained in:
Achilles Rasquinha 2018-03-28 17:54:38 +05:30
parent d5a9734f6c
commit e41fe2c873

View File

@ -165,7 +165,7 @@ def migrate_env(python, no_backup = False):
# TODO: Options # TODO: Options
papps = osp.join(path, 'apps') papps = osp.join(path, 'apps')
apps = ['frappe'] + [app for app in os.listdir(papps) if app != 'frappe'] apps = ['frappe', 'erpnext'] + [app for app in os.listdir(papps) if app not in ['frappe', 'erpnext']]
for app in apps: for app in apps:
papp = osp.join(papps, app) papp = osp.join(papps, app)