dotfiles/install.sh

16 lines
416 B
Bash
Raw Normal View History

2021-01-31 18:10:19 +01:00
#!/usr/bin/env bash
2021-01-31 21:45:12 +01:00
echo "Starting the Dot File Install Script..."
2021-01-31 18:10:19 +01:00
set -e
CONFIG=".install.conf.yaml"
DOTBOT_DIR=".dotbot"
DOTBOT_BIN="bin/dotbot"
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASEDIR}"
git -C "${DOTBOT_DIR}" submodule sync --quiet --recursive
git submodule update --init --recursive "${DOTBOT_DIR}"
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"