Got it checking host correctly

This commit is contained in:
Russell Riker 2022-09-05 15:18:17 -04:00
parent a9bd02086b
commit c37499666f
1 changed files with 2 additions and 2 deletions

View File

@ -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