From c5784d84d8e51f762b13408eb4876595016c2638 Mon Sep 17 00:00:00 2001 From: Marek Grzelak Date: Thu, 3 Sep 2020 21:44:49 -0400 Subject: [PATCH] Dotbot binary by default isn't in META_DIR subfolder, must have been copy-paste typo. --- Tips-and-Tricks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tips-and-Tricks.md b/Tips-and-Tricks.md index 567fa7b..61d470e 100644 --- a/Tips-and-Tricks.md +++ b/Tips-and-Tricks.md @@ -64,7 +64,7 @@ echo ${CONFIGS} for config in ${CONFIGS} ${@}; do echo -e "\nConfigure $config" configFile="$(mktemp)" ; echo -e "$(<"${BASE_DIR}/${META_DIR}/${BASE_CONFIG}${CONFIG_SUFFIX}")\n$(<"${BASE_DIR}/${META_DIR}/${CONFIG_DIR}/${config}${CONFIG_SUFFIX}")" > "$configFile" - "${BASE_DIR}/${META_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c "$configFile" ; rm -f "$configFile" + "${BASE_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c "$configFile" ; rm -f "$configFile" done ``` @@ -91,7 +91,7 @@ git submodule update --init --recursive --remote for config in ${@}; do configFile="$(mktemp)" ; echo -e "$(<"${BASE_DIR}/${META_DIR}/${BASE_CONFIG}${CONFIG_SUFFIX}")\n$(<"${BASE_DIR}/${META_DIR}/${CONFIG_DIR}/${config}${CONFIG_SUFFIX}")" > "$configFile" - "${BASE_DIR}/${META_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c "$configFile" ; rm -f "$configFile" + "${BASE_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c "$configFile" ; rm -f "$configFile" done ```