From 0ad44214cf739812ce8dc0175f5774bdd376ebf1 Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Thu, 3 Sep 2020 13:07:13 +0530 Subject: [PATCH] fix: Use 'develop' bench if not specified! --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index ac09bde7..91dff3f2 100644 --- a/install.py +++ b/install.py @@ -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):