From b5ef3c37e41acab4694b445188319ef86a0711f4 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Thu, 1 Mar 2018 20:52:35 -0800 Subject: [PATCH] Fix dotfile installation conditionals. --- install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 449719a..d59851a 100755 --- a/install.sh +++ b/install.sh @@ -324,9 +324,11 @@ install_dotfiles() { install_dotfile_dir "${BASEDIR}/dotfiles" test -d "${BASEDIR}/private_dotfiles" && \ test -d "${BASEDIR}/.git/git-crypt" && \ - install_dotfile_dir "${BASEDIR}/private_dotfiles" + install_dotfile_dir "${BASEDIR}/private_dotfiles" || \ + true test -d "${BASEDIR}/local_dotfiles" && \ - install_dotfile_dir "${BASEDIR}/local_dotfiles" + install_dotfile_dir "${BASEDIR}/local_dotfiles" || \ + true } install_main() {