aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-12-24 11:05:46 +1300
committerTom Ryder <tom@sanctum.geek.nz>2015-12-24 11:05:46 +1300
commit11b001ffafc1ad4123e75c380950542e6f788064 (patch)
tree95d6def4144f7c986c8535697eab7d4769ae824f /bash
parentAdd IFS= to read call for oldpwd.sh (diff)
downloaddotfiles-11b001ffafc1ad4123e75c380950542e6f788064.tar.gz
dotfiles-11b001ffafc1ad4123e75c380950542e6f788064.zip
Add missing case terminator
Diffstat (limited to 'bash')
-rw-r--r--bash/bashrc.d/prompt.bash2
1 files changed, 2 insertions, 0 deletions
diff --git a/bash/bashrc.d/prompt.bash b/bash/bashrc.d/prompt.bash
index 12d68417..e437b9a5 100644
--- a/bash/bashrc.d/prompt.bash
+++ b/bash/bashrc.d/prompt.bash
@@ -262,6 +262,8 @@ prompt() {
*)
printf '%s: Unknown command %s\n' "$FUNCNAME" "$1" >&2
return 2
+ ;;
+
esac
}