Skip to content

Commit b01967a

Browse files
committed
try improve cloning
1 parent d890ad1 commit b01967a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

all-projects.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ cloneFetch() {
229229
local repo="$1"; shift
230230
(
231231
if [[ ! -d ".git" ]]; then
232-
printf "# %-20s - cloning...\n" "$repo"
232+
printf "# %-30s - cloning...\n" "$repo"
233233
GIT_TERMINAL_PROMPT=0 git clone https://github.com/ModelingValueGroup/$repo.git TMP_GIT >/dev/null 2>&1 || :
234234
if [[ -d ".git" ]]; then
235235
cp -R TMP_GIT/. .
@@ -240,10 +240,10 @@ cloneFetch() {
240240
fi
241241
fi
242242
if [[ ! -d ".git" ]]; then
243-
printf "# %-20s - not available\n" "$repo" 1>&2
243+
printf "# %-30s - not available\n" "$repo" 1>&2
244244
else
245245
git fetch --progress --prune --all >/dev/null 2>&1
246-
printf "# %-20s - done\n" "$repo" 1>&2
246+
printf "# %-30s - done\n" "$repo" 1>&2
247247
fi
248248
)&
249249
}

0 commit comments

Comments
 (0)