Updated install to fix local.conf.yaml inclusion
This commit is contained in:
parent
916bb6a0cf
commit
6287145355
1 changed files with 2 additions and 2 deletions
4
install
4
install
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -e
|
#set -e
|
||||||
|
|
||||||
CONFIG="install.conf.yaml"
|
CONFIG="install.conf.yaml"
|
||||||
DOTBOT_DIR="dotbot"
|
DOTBOT_DIR="dotbot"
|
||||||
|
@ -15,6 +15,6 @@ git submodule update --init --recursive "${DOTBOT_DIR}"
|
||||||
|
|
||||||
# Run local dotbot if any
|
# Run local dotbot if any
|
||||||
if [[ -r "${HOME}/.local/dotfiles/local.conf.yaml" ]]; then
|
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
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue