update: Deprecate the usage of update=yes query param. (#2801)

Fixes #2799
master
Harshavardhana 8 years ago committed by GitHub
parent 740ecf530c
commit 1edd74dda2
  1. 4
      cmd/update-main.go

@ -139,10 +139,10 @@ func getReleaseUpdate(updateURL string) (updateMsg updateMessage, errMsg string,
switch runtime.GOOS { switch runtime.GOOS {
case "windows": case "windows":
// For windows. // For windows.
downloadURL = newUpdateURLPrefix + "/minio.exe?update=yes" downloadURL = newUpdateURLPrefix + "/minio.exe"
default: default:
// For all other operating systems. // For all other operating systems.
downloadURL = newUpdateURLPrefix + "/minio?update=yes" downloadURL = newUpdateURLPrefix + "/minio"
} }
// Initialize update message. // Initialize update message.

Loading…
Cancel
Save