2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-24 04:59:01 +00:00

fix: Use 'develop' bench if not specified!

This commit is contained in:
Gavin D'souza 2020-09-03 13:07:13 +05:30
parent 550f55d146
commit 0ad44214cf

View File

@ -269,7 +269,7 @@ def install_bench(args):
def clone_bench_repo(args):
'''Clones the bench repository in the user folder'''
branch = args.bench_branch or 'master'
branch = args.bench_branch or 'develop'
repo_url = args.repo_url or 'https://github.com/frappe/bench'
if os.path.exists(tmp_bench_repo):