Skip to content

Commit

Permalink
Make install script less noisy
Browse files Browse the repository at this point in the history
Before this patch, the `git submodule sync` line would always print to
stdout.
  • Loading branch information
anishathalye committed Jun 5, 2018
1 parent a22838d commit e72e3b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/git-submodule/install
Original file line number Diff line number Diff line change
Expand Up @@ -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}" "${@}"

0 comments on commit e72e3b4

Please sign in to comment.