aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2014-10-04 13:37:04 +1300
committerTom Ryder <tom@sanctum.geek.nz>2014-10-04 13:37:04 +1300
commit76f29d2b9dec7354109dd659e77fc203b555fc90 (patch)
tree84aa03e05667b43502094ad3e8254d5e46bf7528 /bash
parentCommand to move up directory tree to matching name (diff)
downloaddotfiles-76f29d2b9dec7354109dd659e77fc203b555fc90.tar.gz
dotfiles-76f29d2b9dec7354109dd659e77fc203b555fc90.zip
Correct error message
Diffstat (limited to 'bash')
-rw-r--r--bash/bashrc.d/bd.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc.d/bd.bash b/bash/bashrc.d/bd.bash
index 2c955453..8df18907 100644
--- a/bash/bashrc.d/bd.bash
+++ b/bash/bashrc.d/bd.bash
@@ -12,7 +12,7 @@ bd() {
if [[ -d $dir ]] ; then
builtin cd -- "$dir"
else
- printf 'bash: No dir found in PWD named %s' >&2
+ printf 'bash: No dir found in PWD named %s\n' "$1" >&2
return 1
fi
}