Skip to content

Commit

Permalink
Fix unintentional grammatical double-negative in error message when D…
Browse files Browse the repository at this point in the history
…ocker not found on OS X.
  • Loading branch information
lorrin committed Jul 7, 2016
1 parent d0e3681 commit 85589b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function kube::build::docker_available_on_osx() {

kube::log::status "No docker host is set. Checking options for setting one..."
if [[ -z "$(which docker-machine)" && -z "$(which boot2docker)" ]]; then
kube::log::status "It looks like you're running Mac OS X, and neither Docker for Mac, docker-machine or boot2docker are nowhere to be found."
kube::log::status "It looks like you're running Mac OS X, yet none of Docker for Mac, docker-machine or boot2docker are on the path."
kube::log::status "See: https://docs.docker.com/machine/ for installation instructions."
return 1
elif [[ -n "$(which docker-machine)" ]]; then
Expand Down

0 comments on commit 85589b4

Please sign in to comment.