aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/keep.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-12-21 17:10:45 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-12-21 17:10:45 +1300
commit8032ac8c1b7e0dd15fe0954fab3d59dd4c1f0244 (patch)
tree0c69febad80e646999a62ed5945e0e5a6633d5fd /bash/bashrc.d/keep.bash
parentUse clearer logic for prompt color setting (diff)
downloaddotfiles-8032ac8c1b7e0dd15fe0954fab3d59dd4c1f0244.tar.gz
dotfiles-8032ac8c1b7e0dd15fe0954fab3d59dd4c1f0244.zip
Fix printf argument mismatch bugs
What did we do before ShellCheck?
Diffstat (limited to 'bash/bashrc.d/keep.bash')
-rw-r--r--bash/bashrc.d/keep.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc.d/keep.bash b/bash/bashrc.d/keep.bash
index a8c3456a..85455824 100644
--- a/bash/bashrc.d/keep.bash
+++ b/bash/bashrc.d/keep.bash
@@ -124,7 +124,7 @@ EOF
# Deleting is an error, since we need at least one argument
if ((delete)) ; then
- printf 'bash: %s: must specify at least one NAME to delete\n'
+ printf 'bash: %s: must specify at least one NAME to delete\n' \
"${FUNCNAME[0]}" >&2
return 2
fi