From c5300ec279f5604f5b350eeda8f52bb3bd66996f Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Wed, 28 Sep 2016 02:41:21 -0700 Subject: [PATCH] update: Deprecate the usage of update=yes query param. (#2801) Fixes #2799 --- cmd/update-main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/update-main.go b/cmd/update-main.go index a6a8885fc..e41b5b0fc 100644 --- a/cmd/update-main.go +++ b/cmd/update-main.go @@ -143,10 +143,10 @@ func getReleaseUpdate(updateURL string, noError bool) updateMessage { switch runtime.GOOS { case "windows": // For windows. - downloadURL = newUpdateURLPrefix + "/minio.exe?update=yes" + downloadURL = newUpdateURLPrefix + "/minio.exe" default: // For all other operating systems. - downloadURL = newUpdateURLPrefix + "/minio?update=yes" + downloadURL = newUpdateURLPrefix + "/minio" } // Initialize update message.