summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2018-06-05 11:42:11 -0400
committerAnish Athalye <me@anishathalye.com>2018-06-05 11:42:16 -0400
commite72e3b47a0f9b23d966961776a1575c9354a491f (patch)
tree5544231103aa4a1da2e48508065a43720f45fac9 /tools
parenta22838db76afe6abe5e7fe616b8e97571c58aa32 (diff)
Make install script less noisy
Before this patch, the `git submodule sync` line would always print to stdout.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/git-submodule/install2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/git-submodule/install b/tools/git-submodule/install
index f11b48b..5a7e72c 100755
--- a/tools/git-submodule/install
+++ b/tools/git-submodule/install
@@ -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}" "${@}"