From 2b2783368a643afb65b10dd39877799e67c28798 Mon Sep 17 00:00:00 2001 From: gavin Date: Tue, 4 Aug 2020 16:34:19 +0530 Subject: [PATCH] chore: fix outdated update help --- bench/commands/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/commands/update.py b/bench/commands/update.py index cac2ffdd..dee57d28 100755 --- a/bench/commands/update.py +++ b/bench/commands/update.py @@ -6,7 +6,7 @@ from bench.app import pull_apps from bench.utils import post_upgrade, patch_sites, build_assets -@click.command('update', help="Updates bench tool and if executed in a bench directory, without any flags will backup, pull, setup requirements, build, run patches and restart bench. Using specific flags will only do certain tasks instead of all") +@click.command('update', help="Performs an update operation on current bench. Without any flags will backup, pull, setup requirements, build, run patches and restart bench. Using specific flags will only do certain tasks instead of all") @click.option('--pull', is_flag=True, help="Pull updates for all the apps in bench") @click.option('--apps', type=str) @click.option('--patch', is_flag=True, help="Run migrations for all sites in the bench")