mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
27 lines
623 B
Bash
Executable File
27 lines
623 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
CONFIG="install.conf.yaml"
|
|
DOTBOT_DIR="dotbot"
|
|
|
|
DOTBOT_BIN="bin/dotbot"
|
|
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
cd "$BASEDIR"
|
|
git submodule sync --quiet --recursive
|
|
git submodule update --init --recursive
|
|
|
|
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" \
|
|
-d "${BASEDIR}" \
|
|
-c "${CONFIG}" \
|
|
"${@}"
|
|
|
|
# --plugin-dir=dotbot-plugins/dotbot-brew \
|
|
# --plugin-dir=dotbot-plugins/dotbot-gh-extension \
|
|
# --plugin-dir=dotbot-plugins/dotbot-golang \
|
|
# --plugin-dir=dotbot-plugins/dotbot-if \
|
|
# --plugin-dir=dotbot-plugins/dotbot-ifplatform \
|
|
# -p dotbot-plugins/dotbot-if/if.py \
|
|
|