From c37499666f9a5a24fc6f2e328faa7563475b0ee6 Mon Sep 17 00:00:00 2001 From: Russell Riker Date: Mon, 5 Sep 2022 15:18:17 -0400 Subject: [PATCH] Got it checking host correctly --- my-apt-apts.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/my-apt-apts.sh b/my-apt-apts.sh index c27aa77..d517e36 100755 --- a/my-apt-apts.sh +++ b/my-apt-apts.sh @@ -13,12 +13,12 @@ # Apps I like to have on my machines # check if I'm logged on to the tilde.team, if so. Dont run this stuff -if [$HOSTNAME -ne 'tilde']; then +if [ $HOSTNAME != 'tilde' ]; then sudo apt install curl sudo apt install lolcat sudo apt install figlet sudo apt install lynx - + sudo apt install cowsay fi