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
This commit is contained in:
Ivan Pozdeev 2021-02-10 22:42:18 +03:00
parent 89d3d0c33d
commit 9309050864

View file

@ -7,7 +7,8 @@ if [ "$1" = "--debug" ]; then
fi fi
if [ -n "$PYENV_DEBUG" ]; then 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 set -x
fi fi