From 230a86a2d575e22b42a6a67b42569436c93d983b Mon Sep 17 00:00:00 2001 From: Ducky Date: Tue, 25 Jan 2022 12:31:44 +0000 Subject: [PATCH] /etc/skel/.bashrc: fix incorrect logic --- etc/skel/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/skel/.bashrc b/etc/skel/.bashrc index dfe5efb..cdd218d 100644 --- a/etc/skel/.bashrc +++ b/etc/skel/.bashrc @@ -102,7 +102,7 @@ if ! shopt -oq posix; then fi # Hello, world! -if [[ ! -z $SUDO_USER ]]; then +if [[ -z $SUDO_USER ]]; then clear print_header fi