Skip to content

Commit 726e5ee

Browse files
committed
less tracing
1 parent 8a8783c commit 726e5ee

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

all-projects.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,7 @@ cloneFetch() {
230230
(
231231
if [[ ! -d ".git" ]]; then
232232
printf "# %-20s - cloning...\n" "$repo"
233-
#GIT_SSH_COMMAND='ssh -oBatchMode=yes' git clone git@github.com/ModelingValueGroup/$repo.git TMP_GIT >/dev/null 2>&1 || :
234-
GIT_SSH_COMMAND='ssh -oBatchMode=yes' git clone git@github.com/ModelingValueGroup/$repo.git TMP_GIT || :
233+
GIT_SSH_COMMAND='ssh -oBatchMode=yes' git clone git@github.com:ModelingValueGroup/$repo.git TMP_GIT >/dev/null 2>&1 || :
235234
if [[ -d ".git" ]]; then
236235
cp -R TMP_GIT/. .
237236
rm -rf TMP_GIT
@@ -246,7 +245,7 @@ cloneFetch() {
246245
git fetch --progress --prune --all >/dev/null 2>&1
247246
printf "# %-20s - done\n" "$repo" 1>&2
248247
fi
249-
) #&
248+
)&
250249
}
251250
pullAll() {
252251
echo

0 commit comments

Comments
 (0)