From 276e0aa5f2c364ee2fd3ae9bc96bdd47af563b16 Mon Sep 17 00:00:00 2001 From: Jason Swank Date: Sat, 27 May 2023 10:05:14 -0400 Subject: [PATCH] remove default . files --- install | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install b/install index c225b35..68ccc5e 100755 --- a/install +++ b/install @@ -2,11 +2,12 @@ # # Install my dotfiles. # -which stow >/dev/null 2>&1 +which stow >/dev/null 2>&1 if [ $? -ne 0 ]; then echo "stow is not installed" >&2 exit 1 fi -ls -d */ | tr -d / | xargs stow -R +rm $HOME/.zshrc $HOME/.profile +ls -d */ | tr -d / | xargs stow -t $HOME -R