aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/pd.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc.d/pd.bash')
-rw-r--r--bash/bashrc.d/pd.bash6
1 files changed, 4 insertions, 2 deletions
diff --git a/bash/bashrc.d/pd.bash b/bash/bashrc.d/pd.bash
index 346816a1..86a0fb18 100644
--- a/bash/bashrc.d/pd.bash
+++ b/bash/bashrc.d/pd.bash
@@ -31,14 +31,16 @@ pd() {
target=${target%/*}
;;
*)
- printf 'bash: pd: too many arguments\n' >&2
+ printf 'bash: %s: too many arguments\n' \
+ "$FUNCNAME" >&2
return 1
;;
esac
if [[ $target ]] ; then
builtin cd "${opts[@]}" -- "$target"
else
- printf 'bash: pd: error calculating parent directory\n' >&2
+ printf 'bash: %s: error calculating parent directory\n' \
+ "$FUNCNAME" >&2
return 1
fi
}