From a72e57d5699629cba086c7819d2fb06cc872a490 Mon Sep 17 00:00:00 2001 From: tdro Date: Fri, 15 May 2020 08:26:09 -0400 Subject: .bash_profile: Use posix comparison style --- .bash_profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.bash_profile') diff --git a/.bash_profile b/.bash_profile index 43dd38c..17af5d3 100644 --- a/.bash_profile +++ b/.bash_profile @@ -19,7 +19,7 @@ PS1_SSHD='$(E=$? && [ "$E" != 0 ] && echo "$E ")\[\e[0;32m\]\W\[\e[0m\] \[\e[0;3 [ "$EUID" = 0 ] && export PS1="$PS1_ROOT"; # ssh set prompt -[ -n "$SSH_CLIENT" ] && [ "$EUID" -ne 0 ] && export PS1="$PS1_SSHD"; +[ -n "$SSH_CLIENT" ] && [ "$EUID" != 0 ] && export PS1="$PS1_SSHD"; # path exports export PATH="$PATH:$HOME/.config/composer/vendor/bin" -- cgit v1.2.3