diff --git a/install.sh b/install.sh index faed568..9f3325f 100755 --- a/install.sh +++ b/install.sh @@ -26,10 +26,10 @@ mkdir -p "${TARGET_DIR}/.ssh" mkdir -p "${TARGET_DIR}/.config" # Install SSH separately, as it requres a different target. -do_stow ssh "${TARGET_DIR}/.ssh" -do_stow tmux -do_stow git -do_stow zsh -do_stow nvim "${TARGET_DIR}/.config" +do_stow ssh "${TARGET_DIR}/.ssh" || true +do_stow tmux || true +do_stow git || true +do_stow zsh || true +do_stow nvim "${TARGET_DIR}/.config" || true echo "[+] Installed!"