mirror of
https://github.com/minio/minio.git
synced 2025-04-03 19:30:29 -04:00
Merge pull request #1167 from harshavardhana/fix-release-tag
build: Fix release tag.
This commit is contained in:
commit
04d6408c31
4
Makefile
4
Makefile
@ -138,10 +138,10 @@ dockerimage: checkdocker verifiers $(UI_ASSETS)
|
|||||||
@rm minio.dockerimage
|
@rm minio.dockerimage
|
||||||
|
|
||||||
release: verifiers
|
release: verifiers
|
||||||
@MC_RELEASE=RELEASE GO15VENDOREXPERIMENT=1 ./buildscripts/build.sh
|
@MINIO_RELEASE=RELEASE GO15VENDOREXPERIMENT=1 ./buildscripts/build.sh
|
||||||
|
|
||||||
experimental: verifiers
|
experimental: verifiers
|
||||||
@MC_RELEASE=EXPERIMENTAL GO15VENDOREXPERIMENT=1 ./buildscripts/build.sh
|
@MINIO_RELEASE=EXPERIMENTAL GO15VENDOREXPERIMENT=1 ./buildscripts/build.sh
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "Cleaning up all the generated files:"
|
@echo "Cleaning up all the generated files:"
|
||||||
|
@ -14,11 +14,11 @@ _init() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Extract release string.
|
# Extract release string.
|
||||||
release_str=$(echo $MC_RELEASE | tr '[:upper:]' '[:lower:]')
|
release_str=$(echo $MINIO_RELEASE | tr '[:upper:]' '[:lower:]')
|
||||||
|
|
||||||
# Verify release string.
|
# Verify release string.
|
||||||
if [ -z "$release_str" ]; then
|
if [ -z "$release_str" ]; then
|
||||||
echo "Release string cannot be empty. Please set \`MC_RELEASE\` env variable."
|
echo "Release string cannot be empty. Please set \`MINIO_RELEASE\` env variable."
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user