From da1525f38d53f3d4aff5f11409355bd11be381dc Mon Sep 17 00:00:00 2001 From: Jeff LANCE Date: Sun, 9 Aug 2020 17:54:21 +0200 Subject: [PATCH] Change dotbot dir in command --- install-standalone | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-standalone b/install-standalone index 8926524..9bfa8ac 100755 --- a/install-standalone +++ b/install-standalone @@ -20,9 +20,9 @@ cd "${BASE_DIR}" git submodule update --recursive --remote -"${BASE_DIR}/${META_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c "${META_DIR}/${BASE_CONFIG}${CONFIG_SUFFIX}" +"${BASE_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c "${META_DIR}/${BASE_CONFIG}${CONFIG_SUFFIX}" for config in ${@}; do configContent="$(<"${BASE_DIR}/${META_DIR}/${BASE_CONFIG}${CONFIG_SUFFIX}")\n$(<"${BASE_DIR}/${META_DIR}/${CONFIG_DIR}/${config}${CONFIG_SUFFIX}")" - "${BASE_DIR}/${META_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c <(echo -e "$configContent") + "${BASE_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c <(echo -e "$configContent") done