mirror of
https://github.com/minio/minio.git
synced 2025-11-07 12:52:58 -05:00
web: Removing dependency for gpg and downloading assets.
Assets are vendorized from now on and updated for each release.
This commit is contained in:
@@ -23,7 +23,6 @@ _init() {
|
||||
GIT_VERSION="1.0"
|
||||
YASM_VERSION="1.2.0"
|
||||
CURL_VERSION="7.12.0"
|
||||
GPG_VERSION="1.3"
|
||||
GO_VERSION="1.5.1"
|
||||
OSX_VERSION="10.8"
|
||||
UNAME=$(uname -sm)
|
||||
@@ -184,16 +183,6 @@ check_deps() {
|
||||
MISSING="${MISSING} git"
|
||||
fi
|
||||
|
||||
check_version "$(env gpg --version 2>/dev/null | sed -e 's/^.* \([0-9.\].*\).*$/\1/' -e 's/^\([0-9.\]*\).*/\1/g' | head -1)" "${GPG_VERSION}"
|
||||
if [ $? -ge 2 ]; then
|
||||
MISSING="${MISSING} gpg"
|
||||
fi
|
||||
|
||||
check_version "$(env curl --version 2>/dev/null | sed -e 's/^.* \([0-9.\].*\).*$/\1/' -e 's/^\([0-9.\]*\).*/\1/g' | head -1)" "${CURL_VERSION}"
|
||||
if [ $? -ge 2 ]; then
|
||||
MISSING="${MISSING} curl"
|
||||
fi
|
||||
|
||||
check_version "$(env yasm --version 2>/dev/null | sed 's/^.* \([0-9.]*\).*$/\1/' | head -1)" "${YASM_VERSION}"
|
||||
if [ $? -ge 2 ]; then
|
||||
MISSING="${MISSING} yasm(${YASM_VERSION})"
|
||||
|
||||
Reference in New Issue
Block a user