From 24eb2db2c50912c465e8220739ad5a79c0b558c4 Mon Sep 17 00:00:00 2001 From: Shiva Poudel Date: Thu, 27 Dec 2018 02:37:46 +0545 Subject: [PATCH] Compatibility with windows environment now --- Tips-and-Tricks.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Tips-and-Tricks.md b/Tips-and-Tricks.md index e6b5a41..b2f8130 100644 --- a/Tips-and-Tricks.md +++ b/Tips-and-Tricks.md @@ -60,9 +60,9 @@ done < "${META_DIR}/${PROFILES_DIR}/$1" shift for config in ${CONFIGS} ${@}; do - echo -e "\nConfigure $config" - 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") + 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" done ``` @@ -88,8 +88,8 @@ cd "${BASE_DIR}" git submodule update --init --recursive --remote 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") + 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" done ```