Merge branch 'golang-workaround'

This commit is contained in:
Yamashita Yuu 2014-01-03 06:23:03 +09:00
commit 7edceff71c

View file

@ -44,13 +44,13 @@ fi
export PYENV_ROOT export PYENV_ROOT
if [ -z "${PYENV_DIR}" ]; then if [ -z "${PYENV_DIR}" ]; then
PYENV_DIR="$(pwd)" PYENV_DIR="$(abs_dirname "$(pwd)/..")"
else else
cd "$PYENV_DIR" 2>/dev/null || { cd "$PYENV_DIR" 2>/dev/null || {
echo "pyenv: cannot change working directory to \`$PYENV_DIR'" echo "pyenv: cannot change working directory to \`$PYENV_DIR'"
exit 1 exit 1
} >&2 } >&2
PYENV_DIR="$(pwd)" PYENV_DIR="$(abs_dirname "$(pwd)/..")"
cd "$OLDPWD" cd "$OLDPWD"
fi fi
export PYENV_DIR export PYENV_DIR