From 7e171967b3773446e231dfe56221e107eda0c157 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Tue, 9 Feb 2021 11:06:04 +0530 Subject: [PATCH] docs: Update help message for --frappe-branch --- bench/commands/make.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/commands/make.py b/bench/commands/make.py index 554b0603..c20b25b3 100755 --- a/bench/commands/make.py +++ b/bench/commands/make.py @@ -8,7 +8,7 @@ import click @click.option('--ignore-exist', is_flag = True, default = False, help = "Ignore if Bench instance exists.") @click.option('--apps_path', default=None, help="path to json files with apps to install after init") @click.option('--frappe-path', default=None, help="path to frappe repo") -@click.option('--frappe-branch', default=None, help="path to frappe repo") +@click.option('--frappe-branch', default=None, help="Clone a particular branch of frappe") @click.option('--clone-from', default=None, help="copy repos from path") @click.option('--clone-without-update', is_flag=True, help="copy repos from path without update") @click.option('--no-procfile', is_flag=True, help="Do not create a Procfile")