From 628714535552a21f75cb4f2cf68ac23a8f81d08d Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Tue, 5 Jun 2018 15:50:41 -0400 Subject: [PATCH] Updated install to fix local.conf.yaml inclusion --- install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install b/install index 1d010c1..4e10ff4 100755 --- a/install +++ b/install @@ -1,6 +1,6 @@ #!/usr/bin/env bash -set -e +#set -e CONFIG="install.conf.yaml" DOTBOT_DIR="dotbot" @@ -15,6 +15,6 @@ git submodule update --init --recursive "${DOTBOT_DIR}" # Run local dotbot if any if [[ -r "${HOME}/.local/dotfiles/local.conf.yaml" ]]; then - "${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${HOME}/.local/dotfiles" -c "local.conf.yaml" "${@}" + "${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${HOME}/.local/dotfiles" -c "${HOME}/.local/dotfiles/local.conf.yaml" "${@}" fi