dotfiles/install-standalone

29 lines
730 B
Plaintext
Raw Normal View History

2018-06-27 14:33:18 +00:00
#!/usr/bin/env bash
set -e
BASE_CONFIG="base"
CONFIG_SUFFIX=".yaml"
2018-08-19 18:29:34 +00:00
META_DIR="meta"
2018-06-27 14:33:18 +00:00
CONFIG_DIR="configs"
PROFILES_DIR="profiles"
2020-08-09 15:28:11 +00:00
DOTBOT_DIR="dotbot"
2018-06-27 14:33:18 +00:00
DOTBOT_BIN="bin/dotbot"
BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASE_DIR}"
#git submodule update --init --recursive --remote
git submodule update --recursive --remote
2018-06-27 14:33:18 +00:00
2020-08-09 15:54:21 +00:00
"${BASE_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c "${META_DIR}/${BASE_CONFIG}${CONFIG_SUFFIX}"
2018-06-27 14:33:18 +00:00
for config in ${@}; do
configContent="$(<"${BASE_DIR}/${META_DIR}/${BASE_CONFIG}${CONFIG_SUFFIX}")\n$(<"${BASE_DIR}/${META_DIR}/${CONFIG_DIR}/${config}${CONFIG_SUFFIX}")"
2020-08-09 15:54:21 +00:00
"${BASE_DIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASE_DIR}" -c <(echo -e "$configContent")
2018-06-27 14:33:18 +00:00
done