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,14 +102,11 @@ def clone_apps_from(bench_path, clone_from):
|
|||||||
|
|
||||||
install_app(app, bench_path)
|
install_app(app, bench_path)
|
||||||
|
|
||||||
apps = os.listdir(os.path.join(bench_path, 'apps'))
|
with open(os.path.join(clone_from, 'sites', 'apps.txt'), 'r') as f:
|
||||||
|
apps = f.read().splitlines()
|
||||||
# setup frappe first
|
|
||||||
setup_app('frappe')
|
|
||||||
|
|
||||||
for app in apps:
|
for app in apps:
|
||||||
if app != 'frappe':
|
setup_app(app)
|
||||||
setup_app(app)
|
|
||||||
|
|
||||||
def exec_cmd(cmd, cwd='.'):
|
def exec_cmd(cmd, cwd='.'):
|
||||||
from .cli import from_command_line
|
from .cli import from_command_line
|
||||||
|
Loading…
Reference in New Issue
Block a user