diff options
author | Michal Skalski <mskalski@mirantis.com> | 2016-06-08 14:24:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-06-08 14:24:53 +0000 |
commit | 6f9e8e2c829412d350644fa6a820a8a2890f69b7 (patch) | |
tree | a73f28e6b057b03387d392ae900dfbf1bd2b4916 | |
parent | a87426e28f604517de39f778b7a216ecf75e172a (diff) | |
parent | 782c46fb91b5246cf9314ab4a58f3e8184fe5d87 (diff) |
Merge "Do not create files when check connectivity"
-rw-r--r-- | build/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Makefile b/build/Makefile index 94e5b3460..fdfb23971 100644 --- a/build/Makefile +++ b/build/Makefile @@ -86,7 +86,7 @@ all: @KERNEL_VER=$$(uname -r); \ KERNEL_ARRAY=($${KERNEL_VER//./ }); \ if [ $${KERNEL_ARRAY[0]} -lt 3 ] || [[ $${KERNEL_ARRAY[0]} -eq 3 && $${KERNEL_ARRAY[1]} -lt 19 ]] ; then (echo 'Kernel version must be 3.19 or newer'; exit 1) ; fi - @docker/runcontext $(DOCKERIMG) wget -q www.google.com > /dev/null 2>&1 || (echo 'No docker network connectivity or name server - check your network- and docker settings'; exit 1) + @docker/runcontext $(DOCKERIMG) wget -q www.google.com -O /dev/null || (echo 'No docker network connectivity or name server - check your network- and docker settings'; exit 1) @docker/runcontext $(DOCKERIMG) $(MAKE) $(MAKEFLAGS) iso |