update build constants (#19243)

This commit is contained in:
Poorna 2024-03-11 17:54:37 -07:00 committed by GitHub
parent a2f6252b2f
commit b4a23f720e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,8 +49,11 @@ var (
// MinioOSARCH - OS and ARCH.
minioOSARCH = runtime.GOOS + "-" + runtime.GOARCH
// MinioReleaseBaseURL - release url without os and arch.
MinioReleaseBaseURL = "https://dl.min.io/server/minio/release/"
// MinioReleaseURL - release URL.
MinioReleaseURL = "https://dl.min.io/server/minio/release/" + minioOSARCH + SlashSeparator
MinioReleaseURL = MinioReleaseBaseURL + minioOSARCH + SlashSeparator
// MinioStoreName - MinIO store name.
MinioStoreName = "MinIO"