File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ cloneFetch() {
229
229
local repo=" $1 " ; shift
230
230
(
231
231
if [[ ! -d " .git" ]]; then
232
- printf " # %-20s - cloning...\n" " $repo "
232
+ printf " # %-30s - cloning...\n" " $repo "
233
233
GIT_TERMINAL_PROMPT=0 git clone https://github.com/ModelingValueGroup/$repo .git TMP_GIT > /dev/null 2>&1 || :
234
234
if [[ -d " .git" ]]; then
235
235
cp -R TMP_GIT/. .
@@ -240,10 +240,10 @@ cloneFetch() {
240
240
fi
241
241
fi
242
242
if [[ ! -d " .git" ]]; then
243
- printf " # %-20s - not available\n" " $repo " 1>&2
243
+ printf " # %-30s - not available\n" " $repo " 1>&2
244
244
else
245
245
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
247
247
fi
248
248
)&
249
249
}
You can’t perform that action at this time.
0 commit comments