mirror of
1
0
Fork 0
dotbot/tools/git-submodule/install

16 lines
360 B
Plaintext
Raw Normal View History

2014-08-03 17:46:55 -04:00
#!/usr/bin/env bash
2014-03-20 17:42:37 -04:00
set -e
CONFIG="install.conf.yaml"
2014-03-20 17:42:37 -04:00
DOTBOT_DIR="dotbot"
DOTBOT_BIN="bin/dotbot"
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASEDIR}"
git -C "${DOTBOT_DIR}" submodule sync --recursive
git submodule update --init --recursive "${DOTBOT_DIR}"
2014-03-20 17:42:37 -04:00
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"