mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Add rbenv --debug <command>
as a shortcut for setting RBENV_DEBUG=1
This commit is contained in:
parent
892aea138e
commit
3cb95b4d2d
1 changed files with 5 additions and 0 deletions
|
@ -1,11 +1,16 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
if [ "$1" = "--debug" ]; then
|
||||||
|
export RBENV_DEBUG=1
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -n "$RBENV_DEBUG" ]; then
|
if [ -n "$RBENV_DEBUG" ]; then
|
||||||
export PS4='+ [${BASH_SOURCE##*/}:${LINENO}] '
|
export PS4='+ [${BASH_SOURCE##*/}:${LINENO}] '
|
||||||
set -x
|
set -x
|
||||||
fi
|
fi
|
||||||
|
|
||||||
resolve_link() {
|
resolve_link() {
|
||||||
$(type -p greadlink readlink | head -1) "$1"
|
$(type -p greadlink readlink | head -1) "$1"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue