From adb6910095a18bef64a2da6815acd7d322a4c1e9 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 17 Sep 2014 08:09:39 -0600 Subject: [PATCH] Add "hack/install.sh" to the "PRs welcome" note in the end of the install script Also, simplified the output method by using `cat >&2 <&2 '...'`. Signed-off-by: Andrew Page --- hack/install.sh | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/hack/install.sh b/hack/install.sh index b0d945c165e3d..1bcaf43902428 100755 --- a/hack/install.sh +++ b/hack/install.sh @@ -201,12 +201,14 @@ case "$lsb_dist" in ;; esac -echo >&2 -echo >&2 ' Either your platform is not easily detectable, is not supported by this' -echo >&2 ' installer script (yet - PRs welcome!), or does not yet have a package for' -echo >&2 ' Docker. Please visit the following URL for more detailed installation' -echo >&2 ' instructions:' -echo >&2 -echo >&2 ' http://docs.docker.io/en/latest/installation/' -echo >&2 +cat >&2 <<'EOF' + + Either your platform is not easily detectable, is not supported by this + installer script (yet - PRs welcome! [hack/install.sh]), or does not yet have + a package for Docker. Please visit the following URL for more detailed + installation instructions: + + http://docs.docker.io/en/latest/installation/ + +EOF exit 1