1
0
Fork 0
mirror of synced 2024-11-22 08:15:34 -05:00
dotbot/tools/git-submodule/install
Anish Athalye 62db03c969 Fix bug in install script
Double quote array expansion to prevent breaking on spaces.
2014-08-05 15:30:00 -07:00

12 lines
302 B
Bash
Executable file

#!/usr/bin/env bash
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}" "${@}"