You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2022/10/25 02:11:03 UTC

[tomee-site-generator] 01/02: Reduce output of git clone command

This is an automated email from the ASF dual-hosted git repository.

dblevins pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomee-site-generator.git

commit 3af51038ba60f3cbb168a7e36c503c0c0901d048
Author: David Blevins <db...@tomitribe.com>
AuthorDate: Mon Oct 24 19:09:50 2022 -0700

    Reduce output of git clone command
---
 src/main/java/org/apache/tomee/website/Repos.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/tomee/website/Repos.java b/src/main/java/org/apache/tomee/website/Repos.java
index 0c1144f..a425a35 100644
--- a/src/main/java/org/apache/tomee/website/Repos.java
+++ b/src/main/java/org/apache/tomee/website/Repos.java
@@ -51,7 +51,7 @@ public class Repos {
     private static void clone(final Source source) throws Exception {
         System.out.println("  > git clone " + source.getScmUrl());
 
-        jgit("clone", source.getScmUrl(), "-b", source.getBranch(), source.getDir().getAbsolutePath());
+        jgit("clone", "--quiet", source.getScmUrl(), "-b", source.getBranch(), source.getDir().getAbsolutePath());
     }
 
     private static void pull(final Source source) throws IOException, GitAPIException {