Run a non-quiet submodule update to prevent timeouts on Circle CI (#31900)

Summary:
As in title, this PR will disable the `--quiet` flag used in the CI as a workaround to a timeout hitting Mac OS CI.  Circle CI works by timing out when no text has been printed for 10 min.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/31900

Differential Revision: D19302899

Pulled By: bwasti

fbshipit-source-id: 145647da983ee06f40794bda1abd580ea45a0019
diff --git a/.circleci/scripts/binary_checkout.sh b/.circleci/scripts/binary_checkout.sh
index fd1127e..f276051 100755
--- a/.circleci/scripts/binary_checkout.sh
+++ b/.circleci/scripts/binary_checkout.sh
@@ -39,7 +39,7 @@
   echo "Can't tell what to checkout"
   exit 1
 fi
-retry git submodule update --init --recursive --quiet
+retry git submodule update --init --recursive
 echo "Using Pytorch from "
 git --no-pager log --max-count 1
 popd