1
0
Fork 0
mirror of synced 2024-06-19 07:21:11 -04:00
dotbot/tools/git-submodule/install
Anish Athalye 1d2918f82e Fix bug in install script
Do not treat unbound variables as an error.
2014-09-15 07:27:06 -04:00

15 lines
310 B
Bash
Executable file

#!/usr/bin/env bash
set -e
CONFIG="install.conf.json"
DOTBOT_DIR="dotbot"
DOTBOT_BIN="bin/dotbot"
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASEDIR}"
git submodule update --init --recursive "${DOTBOT_DIR}"
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"