added check to not run apps if on tilde

This commit is contained in:
Russell Riker 2022-09-08 19:25:54 -04:00
parent ed06ce8229
commit 74dfb81127
1 changed files with 4 additions and 2 deletions

View File

@ -57,8 +57,10 @@ ln -fs ~/mydev/my-dotfiles/nvim-basic-settings.vim ~/.config/nvim/nvim-basic-set
# Run the apt installer script
if [ -f ./my-apt-apts.sh ]; then
. ./my-apt-apts.sh
if [ $HOSTNAME != 'tilde']; then
if [ -f ./my-apt-apts.sh ]; then
. ./my-apt-apts.sh
fi
fi