From 598ca0569c58004d1541a4f57c4b003a0ae26956 Mon Sep 17 00:00:00 2001 From: Rafael Bodill Date: Sun, 15 Nov 2020 23:34:12 +0200 Subject: [PATCH] fix: global in-place update boolean check (#10900) --- cmd/server-main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/server-main.go b/cmd/server-main.go index 786ebaa90..33a73d929 100644 --- a/cmd/server-main.go +++ b/cmd/server-main.go @@ -407,7 +407,7 @@ func serverMain(ctx *cli.Context) { } } - if !globalCLIContext.Quiet && globalInplaceUpdateDisabled { + if !globalCLIContext.Quiet && !globalInplaceUpdateDisabled { // Check for new updates from dl.min.io. checkUpdate(getMinioMode()) }