From 74dfb81127379ddb9a4bd58cb70d0c11ff1116e0 Mon Sep 17 00:00:00 2001 From: Russell Riker Date: Thu, 8 Sep 2022 19:25:54 -0400 Subject: [PATCH] added check to not run apps if on tilde --- mysetup.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mysetup.sh b/mysetup.sh index c5f8ce4..08357a0 100755 --- a/mysetup.sh +++ b/mysetup.sh @@ -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