aboutsummaryrefslogtreecommitdiff
path: root/.bash_profile
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-05-15 08:26:09 -0400
committertdro <tdro@users.noreply.github.com>2020-05-15 08:26:09 -0400
commita72e57d5699629cba086c7819d2fb06cc872a490 (patch)
tree39edff2932082772a449cb8e2ef5f8529ba664b8 /.bash_profile
parent504932aacbf1ca1bb6a46960c3908a2b6a70179d (diff)
downloaddotfiles-a72e57d5699629cba086c7819d2fb06cc872a490.tar.gz
dotfiles-a72e57d5699629cba086c7819d2fb06cc872a490.tar.bz2
dotfiles-a72e57d5699629cba086c7819d2fb06cc872a490.zip
.bash_profile: Use posix comparison style
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile2
1 files changed, 1 insertions, 1 deletions
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"