浏览代码

Use a better PS4 as recommeneded by Bash Hackers Wiki

it allows to see functions as well as lines, therefore making it possible to see the control flow
pull/1810/head
Ivan Pozdeev 5 年前
父节点
当前提交
9309050864
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      libexec/pyenv

+ 2
- 1
libexec/pyenv 查看文件

@ -7,7 +7,8 @@ if [ "$1" = "--debug" ]; then
fi
if [ -n "$PYENV_DEBUG" ]; then
export PS4='+ [${BASH_SOURCE##*/}:${LINENO}] '
# https://wiki-dev.bash-hackers.org/scripting/debuggingtips#making_xtrace_more_useful
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
set -x
fi

正在加载...
取消
保存