mirror of
https://github.com/Lissy93/dotfiles.git
synced 2024-11-21 23:13:09 +01:00
16 lines
416 B
Bash
16 lines
416 B
Bash
#!/usr/bin/env bash
|
|
|
|
echo "Starting the Dot File Install Script..."
|
|
|
|
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}" "${@}" |