Fix the URL for MinIO update when using custom download server (#9111)

Co-authored-by: Nitish Tiwari <nitish@minio.io>
Co-authored-by: Harshavardhana <harsha@minio.io>
master
Nitish Tiwari 5 years ago committed by GitHub
parent cec8cdb35e
commit 7c32f3f554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      cmd/admin-handlers.go

@ -141,9 +141,9 @@ func (a adminAPIHandlers) ServerUpdateHandler(w http.ResponseWriter, r *http.Req
} }
if runtime.GOOS == "windows" { if runtime.GOOS == "windows" {
u.Path = path.Dir(u.Path) + "minio.exe" u.Path = path.Dir(u.Path) + SlashSeparator + "minio.exe"
} else { } else {
u.Path = path.Dir(u.Path) + "minio" u.Path = path.Dir(u.Path) + SlashSeparator + "minio"
} }
updateURL = u.String() updateURL = u.String()

Loading…
Cancel
Save