Check if the installed golang version is greater than 1.4.0

This commit is contained in:
Anis Elleuch 2015-02-13 10:09:15 +01:00
parent 2ef1df016b
commit 262d8cc23a

View file

@ -33,6 +33,11 @@ echo -n "Checking dependencies for Minio.. "
## Check all dependencies are present
MISSING=""
check_version "$(env go version | sed 's/^.* go\([0-9.]*\).*$/\1/')" "1.4.0"
if [ $? -ne 0 ]; then
MISSING="${MISSING} golang(1.4.0)"
fi
env git --version > /dev/null 2>&1
if [ $? -ne 0 ]; then
MISSING="${MISSING} git"