mirror of
https://github.com/frappe/bench.git
synced 2024-11-11 15:51:03 +00:00
Merge pull request #619 from frappe/fix-migration
fix for erpnext dependencies
This commit is contained in:
commit
ed63b2121c
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user