Skip to content

Commit

Permalink
Add "hack/install.sh" to the "PRs welcome" note in the end of the ins…
Browse files Browse the repository at this point in the history
…tall script

Also, simplified the output method by using `cat >&2 <<EOF ...` instead of multiple lines of `echo >&2 '...'`.

Signed-off-by: Andrew Page <admwiggin@gmail.com>
  • Loading branch information
tianon committed Sep 17, 2014
1 parent 459b403 commit adb6910
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions hack/install.sh
Expand Up @@ -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

0 comments on commit adb6910

Please sign in to comment.