mirror of
1
0
Fork 0

Make install script less noisy

Before this patch, the `git submodule sync` line would always print to
stdout.
This commit is contained in:
Anish Athalye 2018-06-05 11:42:11 -04:00
parent a22838db76
commit e72e3b47a0
1 changed files with 1 additions and 1 deletions

View File

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