mirror of
https://github.com/frappe/bench.git
synced 2025-01-10 09:02:10 +00:00
Merge pull request #307 from vjFaLk/clone-fix
[fix] install apps using apps.txt ordering
This commit is contained in:
commit
86afa275ad
@ -102,13 +102,10 @@ def clone_apps_from(bench_path, clone_from):
|
||||
|
||||
install_app(app, bench_path)
|
||||
|
||||
apps = os.listdir(os.path.join(bench_path, 'apps'))
|
||||
|
||||
# setup frappe first
|
||||
setup_app('frappe')
|
||||
with open(os.path.join(clone_from, 'sites', 'apps.txt'), 'r') as f:
|
||||
apps = f.read().splitlines()
|
||||
|
||||
for app in apps:
|
||||
if app != 'frappe':
|
||||
setup_app(app)
|
||||
|
||||
def exec_cmd(cmd, cwd='.'):
|
||||
|
Loading…
Reference in New Issue
Block a user