ソースを参照

Change the installation path of the `virtualenv.py` script.

pull/3/merge
Yamashita Yuu 11年前
コミット
9e438ee3e2
4個のファイルの変更2行の追加3行の削除
  1. +1
    -0
      README.md
  2. +0
    -2
      bin/pyenv-virtualenv
  3. +1
    -1
      install.sh
  4. +0
    -0
      libexec/pyenv-virtualenv/virtualenv.py

+ 1
- 0
README.md ファイルの表示

@ -43,6 +43,7 @@ under `~/.pyenv/versions`.
#### 2013XXYY
* Remove `python-virtualenv` which was no longer used.
* Change the installation path of the `virtualenv.py` script. (`./libexec` -> `./libexec/pyenv-virtualenv`)
#### 20130507

+ 0
- 2
bin/pyenv-virtualenv ファイルの表示

@ -77,8 +77,6 @@ usage() {
PYENV_VIRTUALENV_ROOT="$(abs_dirname "$0")/.."
VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/libexec/pyenv-virtualenv/virtualenv.py"
[ -f "${VIRTUALENV}" ] || VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/libexec/python-virtualenv/virtualenv.py" # backward compatibility before v20130307
[ -f "${VIRTUALENV}" ] || VIRTUALENV="${PYENV_VIRTUALENV_ROOT}/libexec/virtualenv.py"
VIRTUALENV_OPTIONS=()
parse_options "$@"

+ 1
- 1
install.sh ファイルの表示

@ -16,7 +16,7 @@ for file in bin/*; do
cp "${file}" "${BIN_PATH}"
done
for file in libexec/*; do
for file in libexec/pyenv-virtualenv/*.py; do
cp "${file}" "${LIBEXEC_PATH}"
done

libexec/virtualenv.py → libexec/pyenv-virtualenv/virtualenv.py ファイルの表示


読み込み中…
キャンセル
保存