* Use --quiet for git pull and git clone so git fetch messages do not show up in CI
error logs.
This commit is contained in:
parent
d576f71090
commit
faf91c06e0
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
default gitBranch=''
|
||||
|
||||
var gitCommand='clone ${gitUri}'
|
||||
var gitCommand='clone --quiet ${gitUri}'
|
||||
set gitCommand='${gitCommand} --branch ${gitBranch}' if='!string.IsNullOrEmpty(gitBranch)'
|
||||
|
||||
git
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
default gitBranch=''
|
||||
|
||||
var gitCommand='pull --ff-only ${gitUri}'
|
||||
var gitCommand='pull --quiet --ff-only ${gitUri}'
|
||||
set gitCommand='${gitCommand} ${gitBranch}:${gitBranch}' if='!string.IsNullOrEmpty(gitBranch)'
|
||||
|
||||
git
|
||||
|
|
|
|||
Loading…
Reference in New Issue