mirror of
1
0
Fork 0

Fix bug in install script

Double quote array expansion to prevent breaking on spaces.
This commit is contained in:
Anish Athalye 2014-08-05 15:30:00 -07:00
parent d17e5c8b48
commit 62db03c969
1 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,6 @@ DOTBOT_BIN="bin/dotbot"
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASEDIR}"
git submodule update --init --recursive ${DOTBOT_DIR}
git submodule update --init --recursive "${DOTBOT_DIR}"
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" $@
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"