Fixed inverted logic.

This commit is contained in:
James Patrick 2019-11-25 12:18:31 -05:00
parent 898500ffbb
commit 9b48fc991c
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ if (( ! $+commands[tmux] )); then
fi
# If running as root, stop and return.
if [ "$EUID" -ne 0 ] ; then
if [ "$EUID" -eq 0 ] ; then
return 0
fi