From b4a23f720e940caee835ee5119429579f264ba9e Mon Sep 17 00:00:00 2001 From: Poorna Date: Mon, 11 Mar 2024 17:54:37 -0700 Subject: [PATCH] update build constants (#19243) --- cmd/build-constants.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmd/build-constants.go b/cmd/build-constants.go index 8777fba05..f262f82a6 100644 --- a/cmd/build-constants.go +++ b/cmd/build-constants.go @@ -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"