2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-22 20:19:01 +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
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:
papp = osp.join(papps, app)