File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -230,8 +230,7 @@ cloneFetch() {
230
230
(
231
231
if [[ ! -d " .git" ]]; then
232
232
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 || :
235
234
if [[ -d " .git" ]]; then
236
235
cp -R TMP_GIT/. .
237
236
rm -rf TMP_GIT
@@ -246,7 +245,7 @@ cloneFetch() {
246
245
git fetch --progress --prune --all > /dev/null 2>&1
247
246
printf " # %-20s - done\n" " $repo " 1>&2
248
247
fi
249
- ) # &
248
+ )&
250
249
}
251
250
pullAll () {
252
251
echo
You can’t perform that action at this time.
0 commit comments