From 908334a8e5f94b49e497e3e202f001132d34bf05 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Thu, 18 Oct 2012 12:01:04 +0900 Subject: [PATCH] update help messages --- README.md | 2 +- bin/pyenv-virtualenv | 2 +- bin/python-virtualenv | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 24cc258..751e040 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ To create a virtualenv for the Python version use with pyenv, run `pyenv virtualenv` with tha exact name of the version you want to create virtualenv. For example, - $ pyenv virtualenv 2.7.3 venv27 --distribute + $ pyenv virtualenv --distribute 2.7.3 venv27 virtualenvs will be created into a directory of the same name under `~/.pyenv/versions`. diff --git a/bin/pyenv-virtualenv b/bin/pyenv-virtualenv index c150d4d..ff7d522 100755 --- a/bin/pyenv-virtualenv +++ b/bin/pyenv-virtualenv @@ -15,7 +15,7 @@ fi eval "$(python-virtualenv --lib)" usage() { - { echo "usage: pyenv virtualenv [-v|--verbose] [VIRTUALENV_OPTIONS] PYTHON_VERSION NAME" + { echo "usage: pyenv virtualenv [-v|--verbose] [VIRTUALENV_OPTIONS] VERSION VIRTUALENV_NAME" echo echo " -v/--verbose Verbose mode: print compilation status to stdout" echo diff --git a/bin/python-virtualenv b/bin/python-virtualenv index 565919c..4aa7d2a 100755 --- a/bin/python-virtualenv +++ b/bin/python-virtualenv @@ -62,7 +62,7 @@ version() { usage() { { version - echo "usage: python-virtualenv [-v|--verbose] [VIRTUALENV_OPTIONS] python_prefix virtualenv_path" + echo "usage: python-virtualenv [-v|--verbose] [VIRTUALENV_OPTIONS] python_bin virtualenv_path" } >&2 if [ -z "$1" ]; then