File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -229,8 +229,9 @@ cloneFetch() {
229
229
local repo=" $1 " ; shift
230
230
(
231
231
if [[ ! -d " .git" ]]; then
232
- printf " # cloning %s...\n" " $repo "
233
- GIT_SSH_COMMAND=' ssh -oBatchMode=yes' git clone git@github.com/ModelingValueGroup/$repo .git TMP_GIT > /dev/null 2>&1 || :
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 || :
234
235
if [[ -d " .git" ]]; then
235
236
cp -R TMP_GIT/. .
236
237
rm -rf TMP_GIT
@@ -240,12 +241,12 @@ cloneFetch() {
240
241
fi
241
242
fi
242
243
if [[ ! -d " .git" ]]; then
243
- echo " # not available: $repo " 1>&2
244
+ printf " # %-20s - not available\n " " $repo " 1>&2
244
245
else
245
246
git fetch --progress --prune --all > /dev/null 2>&1
246
- echo " # done: $repo " 1>&2
247
+ printf " # %-20s - done\n " " $repo " 1>&2
247
248
fi
248
- )&
249
+ ) # &
249
250
}
250
251
pullAll () {
251
252
echo
You can’t perform that action at this time.
0 commit comments