aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/cd.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-04-29 17:35:36 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-04-29 17:35:36 +1200
commit62c8407e2d23c52e71f099de920ec91fce3f622b (patch)
tree1871b53141ec0c8f6f3ca2a9a57638ac0fb3e24b /bash/bashrc.d/cd.bash
parentOnly print line if at least one arg (diff)
downloaddotfiles-62c8407e2d23c52e71f099de920ec91fce3f622b.tar.gz
dotfiles-62c8407e2d23c52e71f099de920ec91fce3f622b.zip
Use FUNCNAME rather than hardcoding helper funcs
Diffstat (limited to 'bash/bashrc.d/cd.bash')
-rw-r--r--bash/bashrc.d/cd.bash3
1 files changed, 2 insertions, 1 deletions
diff --git a/bash/bashrc.d/cd.bash b/bash/bashrc.d/cd.bash
index a851752b..908f6822 100644
--- a/bash/bashrc.d/cd.bash
+++ b/bash/bashrc.d/cd.bash
@@ -22,7 +22,8 @@ cd() {
if [[ $PWD == *"$1"* ]] ; then
builtin cd "${opts[@]}" -- "${PWD/$1/$2}"
else
- printf 'bash: cd: could not replace substring\n' >&2
+ printf 'bash: %s: could not replace substring\n' \
+ "$FUNCNAME" >&2
return 1
fi
else