Merge remote-tracking branch 'docwhat/pr/sudo-check' into prepare_066

This commit is contained in:
Dominik Ritter 2018-08-06 00:26:23 +02:00
commit 3b8f0abdb2

View file

@ -624,12 +624,12 @@ prompt_context() {
if [[ $(print -P "%#") == '#' ]]; then
current_state="ROOT"
elif [[ -n "$SSH_CLIENT" || -n "$SSH_TTY" ]]; then
if sudo -n true 2>/dev/null; then
if [[ -n "$SUDO_COMMAND" ]]; then
current_state="REMOTE_SUDO"
else
current_state="REMOTE"
fi
elif sudo -n true 2>/dev/null; then
elif [[ -n "$SUDO_COMMAND" ]]; then
current_state="SUDO"
fi