aboutsummaryrefslogtreecommitdiff
path: root/sh/shrc.d/bd.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-20 13:45:17 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-20 13:45:17 +1200
commit6f36a9e6494c723b209b253dfe3c83b62741c105 (patch)
treedc90d921978c517e3c2679c96f6a9db43ae31e6d /sh/shrc.d/bd.sh
parentMove bd() from Bash func section in README (diff)
downloaddotfiles-6f36a9e6494c723b209b253dfe3c83b62741c105.tar.gz
dotfiles-6f36a9e6494c723b209b253dfe3c83b62741c105.zip
Correctly bail from failed subshell
Diffstat (limited to 'sh/shrc.d/bd.sh')
-rw-r--r--sh/shrc.d/bd.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/sh/shrc.d/bd.sh b/sh/shrc.d/bd.sh
index 5593ff4d..a5344ae7 100644
--- a/sh/shrc.d/bd.sh
+++ b/sh/shrc.d/bd.sh
@@ -54,9 +54,10 @@ bd() {
# Print the target
printf '%s\n' "$dirname"
+ )"
- # If the subshell failed, return from the function with the same exit value
- )" || return
+ # If the subshell printed nothing, return with failure
+ [ -n "$1" ] || return
# Try to change into the determined directory
command cd -- "$@"