You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2019/02/13 09:52:22 UTC

[camel-k] branch master updated: chore(catalog): reduce build_catalog.sh verbosity

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/master by this push:
     new e8f0d79  chore(catalog): reduce build_catalog.sh verbosity
e8f0d79 is described below

commit e8f0d79094d107ef90ed0029da0fa2cd77acaaea
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Wed Feb 13 10:01:27 2019 +0100

    chore(catalog): reduce build_catalog.sh verbosity
---
 script/build_catalog.sh | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/script/build_catalog.sh b/script/build_catalog.sh
index b965671..dd42c64 100755
--- a/script/build_catalog.sh
+++ b/script/build_catalog.sh
@@ -5,15 +5,17 @@ rootdir=$location/../
 
 version=$($location/get_version.sh)
 
-if [[ "$#" -eq 0 ]]; then
-    ./mvnw -f runtime/pom.xml \
+if [ "$#" -eq 0 ]; then
+    echo "build default catalog"
+    ./mvnw -q -f runtime/pom.xml \
         -N \
         -Pcatalog \
         -Dcatalog.path=${rootdir}/deploy
 else
     for ver in "$@"
     do
-        ./mvnw -f runtime/pom.xml \
+        echo "build catalog for version $ver"
+        ./mvnw -q -f runtime/pom.xml \
             -N \
             -Pcatalog \
             -Dcatalog.version=$ver \