mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
Consistent style
This commit is contained in:
parent
044eb6c802
commit
735a2bc4e7
1 changed files with 9 additions and 10 deletions
|
@ -1,22 +1,21 @@
|
|||
#!/usr/bin/env bash -e
|
||||
|
||||
abs_dirname() {
|
||||
orig_dir=`pwd`
|
||||
path="$1"
|
||||
local cwd="$(pwd)"
|
||||
local path="$1"
|
||||
|
||||
while [ -n "$path" ]; do
|
||||
cd `dirname "$path"`
|
||||
name=`basename "$path"`
|
||||
path=`readlink "$name" || true`
|
||||
cd "$(dirname "$path")"
|
||||
local name="$(basename "$path")"
|
||||
path="$(readlink "$name" || true)"
|
||||
done
|
||||
unset name path
|
||||
|
||||
pwd
|
||||
cd "$orig_dir"
|
||||
unset orig_dir
|
||||
cd "$cwd"
|
||||
}
|
||||
|
||||
bindir=`abs_dirname $0`
|
||||
export PATH="$bindir:$PATH"
|
||||
libexec_path="$(abs_dirname "$0")"
|
||||
export PATH="${libexec_path}:${PATH}"
|
||||
|
||||
command="$1"
|
||||
if [ -z "$command" ]; then
|
||||
|
|
Loading…
Reference in a new issue