add dotbot submodule

This commit is contained in:
Jidbo 2019-12-11 21:21:54 +01:00
parent 5bece691ec
commit a4829f2b18
No known key found for this signature in database
GPG key ID: 176CBC4DBB0A8965
4 changed files with 20 additions and 0 deletions

4
.gitmodules vendored Normal file
View file

@ -0,0 +1,4 @@
[submodule "dotbot"]
path = dotbot
url = https://github.com/anishathalye/dotbot
ignore = dirty

1
dotbot Submodule

@ -0,0 +1 @@
Subproject commit 2c8a0431edfd826c8caa4afbfa22ca408e745db6

15
install Executable file
View file

@ -0,0 +1,15 @@
#!/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 -C "${DOTBOT_DIR}" submodule sync --quiet --recursive
git submodule update --init --recursive "${DOTBOT_DIR}"
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"

0
install.conf.yaml Normal file
View file