From 3e749ba547f80f40eefce7775ab5c2c6bbb8e8a9 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Wed, 10 Aug 2022 13:53:06 +0530 Subject: [PATCH] fix: update check condition Right now updates are checked for src and --version command, it used to be opposite of this. ref: https://github.com/frappe/bench/commit/7c653db70322604471fad120b779212119e3d010 --- bench/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/cli.py b/bench/cli.py index 312c4c63..140ea662 100755 --- a/bench/cli.py +++ b/bench/cli.py @@ -123,7 +123,7 @@ def cli(): bench_command() if cmd_from_sys in bench_command.commands: - with execute_cmd(check_for_update=not is_cli_command, command=command, logger=logger): + with execute_cmd(check_for_update=is_cli_command, command=command, logger=logger): bench_command() if in_bench: