1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-10 04:23:47 -05:00

improve error message of pypy

This commit is contained in:
Yamashita Yuu
2013-05-31 14:28:08 +09:00
parent b8cbb18f7b
commit 56a9a7cebf
8 changed files with 31 additions and 16 deletions

View File

@@ -16,8 +16,10 @@ case "$(uname -s)" in
install_zip "pypy-2.0.2" "https://bitbucket.org/pypy/pypy/downloads/pypy-2.0.2-win32.zip#3e51dce7ecfc8fb069d65d95e8de6fb2" "pypy" verify_py27
;;
* )
echo "pypy-2.0 is not available." 1>&2
exit 1
{ echo "Precompiled binary of pypy-2.0.2 is not available for $(uname -s)-$(uname -m)."
echo "To build pypy-2.0.2 from soruce, use 'pypy-2.0.2-src'."
} 1>&4 2>&1
false
;;
esac